# Contributor: Jake Buchholz # Maintainer: Jake Buchholz pkgname=containerd # NOTE: containerd's Makefile tries to get REVISION from git, but we're building from a tarball. _commit=9754871865f7fe2f4e74d43e2fc7ccd237edcbce pkgver=1.2.2 pkgrel=0 pkgdesc="An open and reliable container runtime" url="https://containerd.io" arch="all" license="Apache-2.0" depends="runc" makedepends="btrfs-progs-dev go go-md2man libseccomp-dev" subpackages="$pkgname-doc" source="containerd-$pkgver.tar.gz::https://github.com/containerd/containerd/archive/v$pkgver.tar.gz" builddir="$srcdir/src/github.com/containerd/containerd" build() { cd "$srcdir" export GOPATH="$PWD" mkdir -p $(dirname "$builddir") ln -s "$PWD/$pkgname-$pkgver" "$builddir" cd "$builddir" make VERSION="v$pkgver" REVISION="$_commit" make man } check() { cd "$builddir" ./bin/containerd --version } package() { cd "$builddir" install -d "$pkgdir"/usr/bin/ install -Dsm755 "$builddir"/bin/* "$pkgdir"/usr/bin/ install -d "$pkgdir"/usr/share/man/man1/ install -Dm644 "$builddir"/man/*.1 "$pkgdir"/usr/share/man/man1/ install -d "$pkgdir"/usr/share/man/man5/ install -Dm644 "$builddir"/man/*.5 "$pkgdir"/usr/share/man/man5/ } sha512sums="0fdd8799c5afb75074b6f00d5191e983ff570b323242665055c73b2e7a6bdd74a745e287f4f7b675dde26e8bf083c144104151e794ad24d2a8f6f39ae2ee6fff containerd-1.2.2.tar.gz"