summaryrefslogtreecommitdiff
path: root/opt/crun
diff options
context:
space:
mode:
Diffstat (limited to 'opt/crun')
-rw-r--r--opt/crun/.footprint9
-rw-r--r--opt/crun/.signature6
-rw-r--r--opt/crun/MAKEPKG32
3 files changed, 47 insertions, 0 deletions
diff --git a/opt/crun/.footprint b/opt/crun/.footprint
new file mode 100644
index 0000000..7a64523
--- /dev/null
+++ b/opt/crun/.footprint
@@ -0,0 +1,9 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/crun
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libcrun.a
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/crun.1.gz
diff --git a/opt/crun/.signature b/opt/crun/.signature
new file mode 100644
index 0000000..c84313f
--- /dev/null
+++ b/opt/crun/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mD3wJ0/r0vn0I2Guu3dctl2lUJBxhSZ4O5W/FlVsxB1F3azVdowpYU7jKhPgAKdnV5VhBw3GYl3LSI+hV5Ju2QU=
+
+SHA256 (MAKEPKG) = cd4e9558fa054ba9eedf371b4f20073bf8810f707e1b443dc4e428e937acedd2
+SHA256 (.footprint) = 8c878fdaf062f9a4e5997d0933f08c60797e3069c4e9912518f3a6cc89c02dfd
+SHA256 (crun-1.30.1.tar.gz) = 99d036d95113552b6df66c7c879432835504bf0e525fc0372745071df129527b
+SHA256 (crun#1.30.1-1.pkg.tar.gz) = 4150117f62766c1f4128613283af6e22eb1c12f0c9bc3c26875c68a6cf65efb2
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