summaryrefslogtreecommitdiff
path: root/opt/crun/MAKEPKG
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/crun/MAKEPKG
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/crun/MAKEPKG')
-rw-r--r--opt/crun/MAKEPKG32
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