diff options
author | Matt Housh <jaeger@crux.ninja> | 2016-05-25 18:04:59 -0500 |
---|---|---|
committer | Matt Housh <jaeger@crux.ninja> | 2016-05-25 18:04:59 -0500 |
commit | 246e1c0b376ae4d9ce0ceff4c2d77daea3395327 (patch) | |
tree | a8e34fdb8d8ecd647aac5e970be3bc86170261bf /containerd | |
parent | 3b233947fdb0a2ae1e12b96ef5cd996eb8a25c7e (diff) | |
download | contrib-246e1c0b376ae4d9ce0ceff4c2d77daea3395327.tar.gz contrib-246e1c0b376ae4d9ce0ceff4c2d77daea3395327.tar.xz |
containerd: initial import, version 0.2.1
Diffstat (limited to 'containerd')
-rw-r--r-- | containerd/.footprint | 5 | ||||
-rw-r--r-- | containerd/.md5sum | 1 | ||||
-rw-r--r-- | containerd/Pkgfile | 19 |
3 files changed, 25 insertions, 0 deletions
diff --git a/containerd/.footprint b/containerd/.footprint new file mode 100644 index 000000000..a7a119b3b --- /dev/null +++ b/containerd/.footprint @@ -0,0 +1,5 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/containerd +-rwxr-xr-x root/root usr/bin/containerd-shim +-rwxr-xr-x root/root usr/bin/ctr diff --git a/containerd/.md5sum b/containerd/.md5sum new file mode 100644 index 000000000..eb3701438 --- /dev/null +++ b/containerd/.md5sum @@ -0,0 +1 @@ +18b37b2241dc77a88ee89cdb1bcaf5d2 containerd-0.2.1.tar.xz diff --git a/containerd/Pkgfile b/containerd/Pkgfile new file mode 100644 index 000000000..e52669ad0 --- /dev/null +++ b/containerd/Pkgfile @@ -0,0 +1,19 @@ +# Description: A daemon to control runC +# URL: https://containerd.tools/ +# Maintainer: Matt Housh, jaeger at crux dot ninja +# Depends on: go + +name=containerd +version=0.2.1 +release=1 +source=(http://jaeger.morpheus.net/linux/crux/files/$name-$version.tar.xz) + +build() { + mkdir -p src/github.com/docker + ln -sf $SRC/$name-$version src/github.com/docker/$name + cd src/github.com/docker/$name + export GOPATH=$SRC + make + install -d -m 0755 $PKG/usr/bin + install -m 0755 bin/* $PKG/usr/bin/ +} |