summaryrefslogtreecommitdiff
path: root/containerd/Pkgfile
blob: 42acbc1222b00366c232fce6b091f37908053b89 (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.5
    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=96df0994faabc1944fc614e52b0b3c6feb609a57
   20     install -d -m 0755 $PKG/usr/bin
   21     install -m 0755 bin/* $PKG/usr/bin/
   22 }

Generated by cgit