28 lines
713 B
Bash
28 lines
713 B
Bash
# Template file for 'runc'
|
|
pkgname=runc
|
|
version=1.0.0
|
|
revision=6
|
|
_subver="rc5"
|
|
_ver="$version-$_subver"
|
|
build_style=go
|
|
go_import_path=github.com/opencontainers/runc
|
|
wrksrc="$pkgname-$_ver"
|
|
hostmakedepends="git pkg-config"
|
|
makedepends="libseccomp-devel"
|
|
short_desc="CLI tool for spawning and running OCI containers"
|
|
maintainer="Paul Knopf <pauldotknopf@gmail.com>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/opencontainers/runc"
|
|
distfiles="https://github.com/opencontainers/runc/releases/download/v${_ver}/runc.tar.xz"
|
|
checksum=0304d249d0d381fbe4812999d30491b7abebf5a730aac59119f362cb7fdb2a20
|
|
|
|
do_build() {
|
|
cd ${GOSRCPATH}
|
|
make
|
|
}
|
|
|
|
do_install() {
|
|
cd ${GOSRCPATH}
|
|
make install BINDIR=${DESTDIR}/usr/bin
|
|
}
|