diff options
Diffstat (limited to 'opt/crun/MAKEPKG')
| -rw-r--r-- | opt/crun/MAKEPKG | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/opt/crun/MAKEPKG b/opt/crun/MAKEPKG new file mode 100644 index 0000000..e6c4aeb --- /dev/null +++ b/opt/crun/MAKEPKG @@ -0,0 +1,32 @@ +#!/bin/mkpkg +# description: Fast and lightweight OCI container runtime +# url: https://github.com/containers/crun + +name=crun +version=1.30.1 +release=1 +depends=(yajl libcap2 libseccomp) +makedeps=(autoconf automake libtool argp-standalone) +source=(https://github.com/containers/$name/releases/download/$version/$name-$version.tar.gz) + +sha256sums=( + "99d036d95113552b6df66c7c879432835504bf0e525fc0372745071df129527b" +) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --disable-systemd + + make + make DESTDIR=$PKG install +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
