contrib/containerd/Pkgfile

21 lines
597 B
Plaintext
Raw Normal View History

# Description: A daemon to control runC
# URL: https://containerd.tools/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: go
name=containerd
2017-04-12 22:29:41 +02:00
version=422e31c
release=1
2017-02-18 02:03:53 +01:00
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
# use the long commit hash here
2017-04-12 22:29:41 +02:00
make GIT_COMMIT=422e31ce907fd9c3833a38d7b8fdd023e5a76e73
install -d -m 0755 $PKG/usr/bin
install -m 0755 bin/* $PKG/usr/bin/
}