2023-11-08 13:00:26 +00:00
|
|
|
# Contributor: Stefan Reimer <stefan@zero-downtime.net>
|
|
|
|
# Maintainer: Stefan Reimer <stefan@zero-downtime.net>
|
|
|
|
pkgname=falcoctl
|
2024-06-24 13:03:39 +00:00
|
|
|
pkgver=0.8.0
|
2023-11-08 13:00:26 +00:00
|
|
|
pkgrel=0
|
|
|
|
pkgdesc="The official CLI tool for working with Falco and its ecosystem components."
|
|
|
|
url="https://github.com/falcosecurity/falcoctl"
|
|
|
|
arch="x86_64 aarch64"
|
|
|
|
license="AGPL-3.0"
|
2024-04-03 14:27:05 +00:00
|
|
|
makedepends="bash go"
|
2023-11-08 13:00:26 +00:00
|
|
|
options="!check"
|
|
|
|
|
|
|
|
|
|
|
|
source="
|
|
|
|
$pkgname-$pkgver.tar.gz::https://github.com/falcosecurity/falcoctl/archive/refs/tags/v$pkgver.tar.gz
|
|
|
|
"
|
|
|
|
|
|
|
|
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
|
|
|
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
|
|
|
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
|
|
|
export GOBIN="$GOPATH/bin"
|
|
|
|
|
|
|
|
build() {
|
|
|
|
make GOFLAGS="-buildmode=pie -v" GOLDFLAGS="-extldflags=-static -w -s" falcoctl
|
|
|
|
|
|
|
|
# cleanup 444 files
|
|
|
|
go clean -modcache
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
mkdir -p "$pkgdir/usr/bin"
|
|
|
|
install -Dm755 falcoctl "$pkgdir/usr/bin/falcoctl"
|
|
|
|
}
|
|
|
|
|
|
|
|
sha512sums="
|
2024-06-24 13:03:39 +00:00
|
|
|
e62b59339ed1005bfcb9e59242bc187e8c9505173fc2c506f8990abf905062aaccdcc465fd01ffeec90886af1f4afea8448c3f128c84b18b145ffdf0a0f90dbf falcoctl-0.8.0.tar.gz
|
2023-11-08 13:00:26 +00:00
|
|
|
"
|