blob: 45e820e3d5aa60f5c798cc3da02f4e2fc86a917d (
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
|
# Maintainer: Kubescape Maintainers <cncf hyphen kubescape hyphen maintainers at lists dot cncf dot io>
pkgname=kubescape
pkgver=3.0.18
pkgrel=0
epoch=0
pkgdesc="An open-source Kubernetes security platform for your IDE, CI/CD pipelines, and clusters."
arch=('x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64' 'i686' 'pentium4')
url="https://github.com/kubescape/kubescape"
license=('Apache-2.0')
makedepends=('go>=2:1.20.0')
provides=('kubescape')
conflicts=('kubescape-bin')
source=("https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha512sums=('cc84924a8ac73fe571224b1cb7794ad5320e1fbe1011ef1fb57267807ad9bc05ba3fc9fae9f122e2292f04a962dada7042e3f0f80cb536c26b657d993f2fec1e')
build() {
cd "${pkgname}-${pkgver}"
mkdir -p ${PWD}/cache
go build -buildmode=pie -buildvcs=false -ldflags="-s -w -X github.com/${pkgname}/${pkgname}/v3/core/cautils.BuildNumber=v${pkgver}" -o ${pkgname}
}
check() {
# check that binary includes pkgver and git enabled
if [ "$(./${pkgname}-${pkgver}/${pkgname} version)" != "Your current version is: v${pkgver}" ]; then
exit 1
fi
}
package() {
cd "${pkgname}-${pkgver}"
# Bash autocomplete file
./${pkgname} completion bash > ${pkgname}-autocomplete.sh
install -Dm644 ${pkgname}-autocomplete.sh ${pkgdir}/usr/share/bash-completion/completions/${pkgname}
# Zsh autocomplete file
./${pkgname} completion zsh > ${pkgname}-autocomplete.sh
install -Dm644 ${pkgname}-autocomplete.sh ${pkgdir}/usr/share/zsh/vendor-completions/_${pkgname}
# Fish autocomplete file
./${pkgname} completion fish > ${pkgname}-autocomplete.sh
install -Dm644 ${pkgname}-autocomplete.sh ${pkgdir}/usr/share/fish/vendor_completions.d/${pkgname}.fish
install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
# docs
install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
cp -a docs -t "${pkgdir}/usr/share/doc/${pkgname}"
}
|