contrib/containerd/Pkgfile

23 lines
629 B
Plaintext
Raw Normal View History

# Description: A daemon to control runC
2017-10-09 18:14:39 +02:00
# URL: https://containerd.io/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: go btrfs-progs git libseccomp
name=containerd
2023-08-03 06:20:13 +02:00
version=1.7.3
2017-04-12 22:29:41 +02:00
release=1
2017-02-18 02:03:53 +01:00
source=(http://jaeger.morpheus.net/linux/crux/files/$name-$version.tar.xz)
build() {
export GO111MODULE=auto
2017-10-09 18:14:39 +02:00
mkdir -p src/github.com/$name
cd src/github.com/$name
ln -s $SRC/$name-$version $name
cd $name
export GOPATH=$SRC
# use the long commit hash here
2023-08-03 06:20:13 +02:00
make GIT_COMMIT=7880925980b188f4c97b462f709d0db8e8962aff
install -d -m 0755 $PKG/usr/bin
install -m 0755 bin/* $PKG/usr/bin/
}