void-packages/srcpkgs/grype/template

23 lines
739 B
Bash

# Template file for 'grype'
pkgname=grype
version=0.74.4
revision=1
build_style=go
build_helper=qemu
go_import_path="github.com/anchore/grype"
go_package="github.com/anchore/grype/cmd/grype"
short_desc="Vulnerability scanner for container images and filesystems"
maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
license="Apache-2.0"
homepage="https://github.com/anchore/grype"
distfiles="https://github.com/anchore/grype/archive/refs/tags/v${version}.tar.gz"
checksum=557e51be2f53086e237b3401085a2e384554e061c4f4780585fd6cfb81aea8dd
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
}