blob: b096ed968914c8ffc7e5386e34fa55e3cf0140c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Fernando Nunez <me@fernandonunez.io>
pkgname=qp-git
pkgver=4.3.0.r1.ge50b2dc
pkgrel=1
pkgdesc="qp - Query Packages. A CLI utility for querying installed packages, written in Go."
arch=("any")
url="https://github.com/Zweih/qp"
license=("GPL3")
makedepends=("go>=1.24.1" "git")
provides=("qp")
conflicts=("qp" "qp-bin")
replaces=("yaylog" "yaylog-bin" "yaylog-git")
source=(
"qp::git+https://github.com/Zweih/qp.git"
"news::git+https://github.com/Zweih/qp.git#branch=packaging"
)
sha256sums=("SKIP" "SKIP")
_binaryname="qp"
pkgver() {
cd "${srcdir}/qp"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/qp"
export CGO_ENABLED=0
go build -trimpath -ldflags="-s -w" -o ${_binaryname} ./cmd/${_binaryname}
}
package() {
cd "$srcdir/qp"
install -Dm755 "${_binaryname}" "${pkgdir}/usr/bin/${_binaryname}"
install -Dm644 "${_binaryname}.1" "${pkgdir}/usr/share/man/man1/${_binaryname}.1"
install -Dm644 "${srcdir}/news/NEWS" "${pkgdir}/usr/share/doc/${pkgname}/NEWS"
}
|