blob: e78da0ac971c6ea034448a2a97ecfabf06dd62d0 (
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
|
# Maintainer: Vianney Bouchaud <aur dot vianney at bouchaud dot org>
pkgname=k8s-ldap-auth-git
_pkgname=k8s-ldap-auth
pkgdesc="Kubernetes webhook token authentication plugin implementation using ldap."
pkgver=4.0.0.r0.gef268b9
pkgrel=2
arch=('x86_64' 'armv7l' 'armv7h' 'aarch64')
url="https://github.com/vbouchaud/k8s-ldap-auth"
license=('MPL2')
conflicts=('k8s-ldap-auth')
provides=('k8s-ldap-auth')
makedepends=(
'go'
'git'
)
pkgver() {
cd "$srcdir/$_pkgname"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
source=(
"$_pkgname::git+https://github.com/vbouchaud/k8s-ldap-auth#branch=master"
)
sha256sums=(
"SKIP"
)
build() {
export GOPATH="$srcdir"/gopath
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export CGO_ENABLED=1
cd "$srcdir/$_pkgname"
make k8s-ldap-auth
}
package() {
install -D -m0755 "$srcdir/$_pkgname/k8s-ldap-auth" "$pkgdir/usr/bin/k8s-ldap-auth"
}
|