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

Generated by cgit