contrib/runc/Pkgfile

26 lines
802 B
Plaintext
Raw Normal View History

2016-05-26 01:05:19 +02:00
# Description: a lightweight universal runtime container
# URL: https://runc.io/
# Maintainer: Matt Housh, jaeger at crux dot ninja
2018-08-28 18:43:09 +02:00
# Depends on: go libseccomp git
2016-05-26 01:05:19 +02:00
name=runc
2019-06-03 00:44:06 +02:00
version=2b18fe1
release=2
2017-02-18 02:04:28 +01:00
source=(http://jaeger.morpheus.net/linux/crux/files/$name-$version.tar.xz \
2019-06-03 00:44:06 +02:00
http://jaeger.morpheus.net/linux/crux/files/$name-man-pages-$version.tar.xz)
2016-05-26 01:05:19 +02:00
build() {
mkdir -pv src/github.com/opencontainers
cd src/github.com/opencontainers
2017-10-09 18:15:03 +02:00
ln -sf $SRC/$name-$version $name
cd $name
2016-05-26 01:05:19 +02:00
export GOPATH=$SRC
2017-10-09 18:15:03 +02:00
export BUILDTAGS="seccomp"
# use the long commit hash here
2019-06-03 00:44:06 +02:00
make COMMIT=2b18fe1d885ee5083ef9f0838fee39b62d653e30
2016-05-26 01:05:19 +02:00
install -D -m 0755 $name $PKG/usr/bin/$name
install -d -m 0755 $PKG/usr/share/man/man8
install -m 0644 $SRC/man8/* $PKG/usr/share/man/man8/
}