23 lines
608 B
Bash
23 lines
608 B
Bash
# Template file for 'cri-tools'
|
|
pkgname=cri-tools
|
|
version=1.17.0
|
|
revision=1
|
|
build_style=go
|
|
go_import_path=github.com/kubernetes-sigs/cri-tools
|
|
short_desc="CLI and validation tools for Kubelet Container Runtime Interface (CRI)"
|
|
maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/kubernetes-sigs/cri-tools"
|
|
distfiles="https://github.com/kubernetes-sigs/cri-tools/archive/v${version}.tar.gz"
|
|
checksum=8535af6886d060e5c4b9dde143641aa94407fffff3cb0df50d9924938d0b3e63
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
for bin in _output/*; do
|
|
vbin $bin
|
|
done
|
|
}
|