runc: initial import, version 0.1.1

This commit is contained in:
Matt Housh 2016-05-25 18:05:19 -05:00
parent 246e1c0b37
commit 122dee5d73
3 changed files with 44 additions and 0 deletions

19
runc/.footprint Normal file
View File

@ -0,0 +1,19 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/runc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/runc-checkpoint.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-delete.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-events.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-exec.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-kill.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-list.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-pause.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-restore.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-resume.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-spec.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-start.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc-state.8.gz
-rw-r--r-- root/root usr/share/man/man8/runc.8.gz

2
runc/.md5sum Normal file
View File

@ -0,0 +1,2 @@
0346708e7c769a1862fb1a4b26fcdd8f runc-0.1.1.tar.xz
435c1fd4150ed5dcfb674f3f352a5e21 runc-man-pages-0.1.1.tar.xz

23
runc/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: a lightweight universal runtime container
# URL: https://runc.io/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: go libseccomp
name=runc
version=0.1.1
release=2
source=(http://jaeger.morpheus.net/linux/crux/files/$name-$version.tar.xz \
http://jaeger.morpheus.net/linux/crux/files/$name-man-pages-$version.tar.xz)
build() {
mkdir -pv src/github.com/opencontainers
cd src/github.com/opencontainers
ln -sf $SRC/$name-$version
cd $name-$version
export GOPATH=$SRC
make
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/
}