# Maintainer: mickaelca pkgname=kubescape-bin pkgver=3.0.1 pkgrel=1 pkgdesc="kubescape is the first tool for testing if Kubernetes is deployed securely as defined in Kubernetes Hardening Guidance by to NSA and CISA" provides=('kubescape') arch=('x86_64') url="https://github.com/armosec/kubescape" license=("APACHE") source=( $pkgname-$pkgver::https://github.com/armosec/kubescape/releases/download/v${pkgver}/kubescape-ubuntu-latest ) sha256sums=( 8cbccd2e74f1fea65863d26ba449070929b24b36c821b70cb8f037ed53be34a8 ) build() { cd "$srcdir" } package () { cd "$pkgdir" mkdir -p "usr/bin" install -Dm755 "$srcdir/$pkgname-$pkgver" "$pkgdir/usr/bin/${provides}" }