summaryrefslogtreecommitdiff
path: root/runc
diff options
context:
space:
mode:
authorMatt Housh <jaeger@crux.ninja>2016-05-25 18:05:19 -0500
committerMatt Housh <jaeger@crux.ninja>2016-05-25 18:05:19 -0500
commit122dee5d73219c2de603dd85681cffe1b28ca496 (patch)
tree1a28a1e64ec2d7544a2f51b6f0c0e223ee5cc23d /runc
parent246e1c0b376ae4d9ce0ceff4c2d77daea3395327 (diff)
downloadcontrib-122dee5d73219c2de603dd85681cffe1b28ca496.tar.gz
contrib-122dee5d73219c2de603dd85681cffe1b28ca496.tar.xz
runc: initial import, version 0.1.1
Diffstat (limited to 'runc')
-rw-r--r--runc/.footprint19
-rw-r--r--runc/.md5sum2
-rw-r--r--runc/Pkgfile23
3 files changed, 44 insertions, 0 deletions
diff --git a/runc/.footprint b/runc/.footprint
new file mode 100644
index 000000000..28cd15684
--- /dev/null
+++ b/runc/.footprint
@@ -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
diff --git a/runc/.md5sum b/runc/.md5sum
new file mode 100644
index 000000000..e81ba45d4
--- /dev/null
+++ b/runc/.md5sum
@@ -0,0 +1,2 @@
+0346708e7c769a1862fb1a4b26fcdd8f runc-0.1.1.tar.xz
+435c1fd4150ed5dcfb674f3f352a5e21 runc-man-pages-0.1.1.tar.xz
diff --git a/runc/Pkgfile b/runc/Pkgfile
new file mode 100644
index 000000000..85e00a799
--- /dev/null
+++ b/runc/Pkgfile
@@ -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/
+}

Generated by cgit