blob: 07f81bda667d4d8550cbe5a904ceb91bd0395f81 (
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
|
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
pkgname=pomerium-cli
pkgver=0.18.0
pkgrel=1
pkgdesc='CLI component for Pomerium'
arch=('x86_64' 'armv6h' 'armv7h' 'aarch64')
url="https://github.com/pomerium/cli"
license=('Apache')
depends=('glibc')
makedepends=('go')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('a9aeb5c9e980c19d9fe1ef82f9597305bba924b037845d73d8557926bd47c8b6')
prepare() {
cd "cli-$pkgver"
mkdir -p build
go mod download
}
build() {
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
cd "cli-$pkgver"
local _PKG="${url#https://}"
go build \
-o build \
-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"
-X $_PKG/version.ProjectName=$pkgname -X $_PKG/version.ProjectURL=$_PKG" \
"./cmd/$pkgname"
}
check() {
cd "cli-$pkgver"
go test \
-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
./...
}
package() {
cd "cli-$pkgver"
install -D "build/$pkgname" -t "$pkgdir/usr/bin/"
}
|