23 lines
622 B
Bash
23 lines
622 B
Bash
# Template file for 'cni-plugins'
|
|
pkgname=cni-plugins
|
|
version=0.8.5
|
|
revision=1
|
|
wrksrc="plugins-${version}"
|
|
build_style=go
|
|
go_import_path="github.com/containernetworking/plugins"
|
|
short_desc="Container Network Interface (plugins)"
|
|
maintainer="Cameron Nemo <cnemo@tutanota.com>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/containernetworking/plugins"
|
|
distfiles="https://github.com/containernetworking/plugins/archive/v${version}.tar.gz"
|
|
checksum=9d1526ed965ac6562fd95a931ab2346b3c5efd58c2f569038ba3c530f7e66472
|
|
|
|
do_build() {
|
|
./build_linux.sh
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/libexec/cni
|
|
vcopy "bin/*" usr/libexec/cni
|
|
}
|