void-packages/srcpkgs/grype/template

26 lines
868 B
Bash

# Template file for 'grype'
pkgname=grype
version=0.85.0
revision=1
build_style=go
build_helper=qemu
go_import_path="github.com/anchore/grype"
go_package="github.com/anchore/grype/cmd/grype"
go_ldflags="-X main.version=${version}"
short_desc="Vulnerability scanner for container images and filesystems"
maintainer="cinerea0 <cinerea0@protonmail.com>"
license="Apache-2.0"
homepage="https://github.com/anchore/grype"
changelog="https://github.com/anchore/grype/releases"
distfiles="https://github.com/anchore/grype/archive/refs/tags/v${version}.tar.gz"
checksum=b32d158629a16a03b4300e48369e0727cb664b3c3652477da3eafab5f1d32931
make_check=no # tests require a running docker daemon
post_install() {
grype="${DESTDIR}/usr/bin/grype"
for shell in bash fish zsh; do
vtargetrun ${grype} completion ${shell} >grype.${shell}
vcompletion grype.${shell} ${shell}
done
}