# Description: A daemon to control runC
# URL: https://containerd.io/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: go btrfs-progs git libseccomp

name=containerd
version=2.3.2
release=1
source=(https://github.com/containerd/containerd/archive/v$version/$name-$version.tar.gz)

build() {
    export GO111MODULE=auto
    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
    make VERSION=v$version REVISION=fff62f14765df376e5fc36f5a8f8e795b5670f61
    install -d -m 0755 $PKG/usr/bin
    install -m 0755 bin/* $PKG/usr/bin/
}
