blob: e49e2fd0ac873e41dcd87cc8860fc712f277d670 (
plain)
1 # Description: A daemon to control runC
2 # URL: https://containerd.io/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: go btrfs-progs git libseccomp
5
6 name=containerd
7 version=1.4.3
8 release=1
9 source=(http://jaeger.morpheus.net/linux/crux/files/$name-$version.tar.xz)
10
11 build() {
12 mkdir -p src/github.com/$name
13 cd src/github.com/$name
14 ln -s $SRC/$name-$version $name
15 cd $name
16 export GOPATH=$SRC
17 # use the long commit hash here
18 make GIT_COMMIT=269548fa27e0089a8b8278fc4fc781d7f65a939b
19 install -d -m 0755 $PKG/usr/bin
20 install -m 0755 bin/* $PKG/usr/bin/
21 }
|