blob: e2ed93033a98461bb46d32c0f9b8a0949b7a418c (
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
38
39
40
41
42
43
44
45
46
|
# Maintainer: Andrew Rabert <ar@nullsum.net>
pkgname=rabtap
pkgver=1.43
pkgrel=1
license=(GPL3)
pkgdesc="RabbitMQ wire tap and swiss army knife "
makedepends=('go')
arch=('aarch64' 'armv7h' 'i686' 'x86_64')
url="https://github.com/jandelgado/rabtap"
source=("$pkgname-$pkgver.tar.gz::https://github.com/jandelgado/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('a814caa14b29f28cbe15a14583de547768eaafc981d791b30e185797f17eafa0')
prepare() {
# prevent creation of a `go` directory in one's home.
# this directory cannot be removed with even `rm -rf` unless one becomes root
# or changes the write permissions.
export GOPATH="${srcdir}/gopath"
go clean -modcache
}
build() {
cd "${pkgname}-${pkgver}"
cd cmd/rabtap
# cannot determine specific commit from GitHub tag tarballs
CGO_ENABLED=0 go build \
-ldflags "-X main.version=${pkgver} -X main.commit=unknown" \
-buildmode=pie \
-modcacherw \
-trimpath \
-o ../../bin/rabtap
# clean now to ensure makepkg --clean works
go clean -modcache
}
package() {
cd "${pkgname}-${pkgver}"
install -Dm755 -t "${pkgdir}/usr/bin" \
./bin/rabtap
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" \
./LICENSE
}
|