blob: d2ca8b775d09de599281925dd0d536b5a29e64a1 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Maintainer: Vianney Bouchaud <aur dot vianney at bouchaud dot org>
pkgname=kubeshark-git
_pkgname=kubeshark
pkgdesc="Kubeshark is an API Traffic Analyzer for Kubernetes."
pkgver=41.3.r12.g470ab3d7e
pkgrel=1
arch=('x86_64' 'aarch64')
url="https://github.com/kubeshark/kubeshark"
license=('apache')
conflicts=('kubeshark')
provides=('kubeshark')
makedepends=(
'go'
'git'
)
_branch=master
pkgver() {
cd "$srcdir/$_pkgname"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
source=(
"$_pkgname::git+https://github.com/kubeshark/kubeshark#branch=$_branch"
)
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"
platform=$(go version | sed -r 's/go version go.+\s(.+)/\1/' | sed -e 's/\//-/g')
commit_hash=$(git rev-parse HEAD)
version=$(git describe --tags | cut -d'-' -f1)
# -X 'github.com/kubeshark/kubeshark/misc.BuildTimestamp=$(BUILD_TIMESTAMP)' \
go build ${GCLFAGS} \
-ldflags="\
-X 'github.com/kubeshark/kubeshark/misc.GitCommitHash=${commit_hash}' \
-X 'github.com/kubeshark/kubeshark/misc.Branch=${_branch}' \
-X 'github.com/kubeshark/kubeshark/misc.Platform=${platform}' \
-X 'github.com/kubeshark/kubeshark/misc.Ver=${version}' \
-s -w" \
-o bin/kubeshark kubeshark.go
}
package() {
install -D -m0755 "$srcdir/$_pkgname/bin/kubeshark" "$pkgdir/usr/bin/kubeshark"
"${pkgdir}/usr/bin/kubeshark" completion bash | install -Dm644 /dev/stdin "${pkgdir}/usr/share/bash-completion/completions/kubeshark"
"${pkgdir}/usr/bin/kubeshark" completion zsh | install -Dm644 /dev/stdin "${pkgdir}/usr/share/zsh/site-functions/_kubeshark"
}
|