Date: Saturday, April 8, 2023 @ 02:54:00
Author: felixonmars
Revision: 1441532
archrelease: copy trunk to community-staging-x86_64
Added:
crun/repos/community-staging-x86_64/
crun/repos/community-staging-x86_64/PKGBUILD
(from rev 1441531, crun/trunk/PKGBUILD)
crun/repos/community-staging-x86_64/keys/
----------+
PKGBUILD | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
Copied: crun/repos/community-staging-x86_64/PKGBUILD (from rev 1441531,
crun/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-08 02:54:00 UTC (rev 1441532)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud <[email protected]>
+# Contributor: hexchian <i at hexchain dot org>
+
+pkgname=crun
+pkgver=1.8.3
+pkgrel=2
+pkgdesc="A fast and lightweight fully featured OCI runtime and C library for
running containers"
+url="https://github.com/containers/crun"
+license=('LGPL')
+arch=('x86_64')
+provides=('oci-runtime')
+depends=('yajl' 'systemd-libs' 'libcap' 'libseccomp' 'criu')
+makedepends=('libtool' 'python' 'go-md2man' 'systemd' 'git')
+source=("https://github.com/containers/crun/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
+validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
+sha256sums=('6dc9b2bc1cdcddbc45617866d673acb0a61ee25734fb92b31d6e7ec228bae09c'
+ 'SKIP')
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./autogen.sh
+ ./configure \
+ --prefix=/usr \
+ --enable-shared \
+ --enable-dynamic \
+ --with-python-bindings
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}