22 lines
608 B
Bash
22 lines
608 B
Bash
# Template file for 'cri-tools'
|
|
pkgname=cri-tools
|
|
version=1.16.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=4c382c3929f1536c36f3a6c8593ce49dd5b7831d3c0f9e41cd4f48163ec05b90
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
for bin in _output/*; do
|
|
vbin $bin
|
|
done
|
|
}
|