blob: 602b97048710bef37051d7cdb6b395c20c53946d (
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.6.4
8 release=1
9 source=(http://jaeger.morpheus.net/linux/crux/files/$name-$version.tar.xz)
10
11 build() {
12 export GO111MODULE=auto
13 mkdir -p src/github.com/$name
14 cd src/github.com/$name
15 ln -s $SRC/$name-$version $name
16 cd $name
17 export GOPATH=$SRC
18 # use the long commit hash here
19 make GIT_COMMIT=212e8b6fa2f44b9c21b2798135fc6fb7c53efc16
20 install -d -m 0755 $PKG/usr/bin
21 install -m 0755 bin/* $PKG/usr/bin/
22 }
|