38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
# Contributor: Stefan Reimer <stefan@zero-downtime.net>
|
|
# Maintainer: Stefan Reimer <stefan@zero-downtime.net>
|
|
pkgname=falcoctl
|
|
pkgver=0.7.3
|
|
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"
|
|
makedepends="bash go"
|
|
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="
|
|
61e539322c91125569c432ea1fc98c84b928795089829a062e6b5c74c7d1223cd71e557b7a8972ba7c6d1b534d1b87da254ee01e12c14038ced5a8f85a22a623 falcoctl-0.7.3.tar.gz
|
|
"
|