23 lines
613 B
Bash
23 lines
613 B
Bash
# Template file for 'cri-tools'
|
|
pkgname=cri-tools
|
|
version=1.22.0
|
|
revision=3
|
|
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=76fc230a73dd7e8183f499c88effaf734540808f2f90287031a85d0a4d8512d9
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
for bin in build/bin/*; do
|
|
vbin $bin
|
|
done
|
|
}
|