blob: e22ac91d1c6556a0421996f8749893ec0142c8d0 (
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
47
48
49
|
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Ahmad Hasan Mubashshir <ahmubashshir@gmail.com>
pkgname=ghz-git
pkgver=0.55.0.r4.g02c0138
pkgrel=2
pkgdesc="Simple gRPC benchmarking and load testing tool"
arch=('x86_64')
url="https://ghz.sh/"
license=('Apache')
makedepends=('go')
source=('git+https://github.com/bojand/ghz')
sha256sums=('SKIP')
pkgver()
{
cd "$srcdir/${pkgname%-git}"
(
set -o pipefail
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v\(.*\)/\1/' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
pkgrel=$(git diff --shortstat|cut -d' ' -f2)
}
prepare() {
cd "${pkgname%-git}"
mkdir -p build
}
build() {
cd "${pkgname%-git}"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS} -s -w"
export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
go build -v -o build ./cmd/...
#make build
}
package() {
cd "${pkgname%-git}"
install -Dm755 build/${pkgname%-git} "$pkgdir"/usr/bin/${pkgname%-git}
install -Dm755 build/${pkgname%-git}-web "$pkgdir"/usr/bin/${pkgname%-git}-web
}
|