[arch-commits] Commit in crun/trunk (PKGBUILD)

Morten Linderud foxboron at archlinux.org
Wed Feb 5 18:59:40 UTC 2020


    Date: Wednesday, February 5, 2020 @ 18:59:40
  Author: foxboron
Revision: 563375

upgpkg: crun 0.12-1

Added:
  crun/trunk/PKGBUILD

----------+
 PKGBUILD |   30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

Added: PKGBUILD
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-02-05 18:59:40 UTC (rev 563375)
@@ -0,0 +1,30 @@
+# Maintainer: Morten Linderud <foxboron at archlinux.org>
+# Contributor: hexchian <i at hexchain dot org>
+
+pkgname=crun
+pkgver=0.12
+pkgrel=1
+pkgdesc="A fast and lightweight fully featured OCI runtime and C library for running containers"
+url="https://github.com/containers/crun"
+license=('GPL3')
+arch=('x86_64')
+depends=('yajl' 'systemd-libs' 'libcap' 'libseccomp')
+makedepends=('libtool' 'python' 'go-md2man')
+source=("https://github.com/containers/crun/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
+validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
+sha256sums=('da7b3c963243c4a44b1a8fb7429c0c04230e56552cb0c0b7e6102d674bd8c690'
+            'SKIP')
+
+build() {
+    cd "$pkgname-$pkgver"
+    ./autogen.sh
+    ./configure \
+        --prefix=/usr \
+        --enable-dynamic
+    make
+}
+
+package() {
+    cd "$pkgname-$pkgver"
+    make DESTDIR="$pkgdir" install
+}



More information about the arch-commits mailing list