[arch-commits] Commit in crun/repos (2 files)
Frederik Schwan
freswa at gemini.archlinux.org
Mon Jul 26 21:07:09 UTC 2021
Date: Monday, July 26, 2021 @ 21:07:08
Author: freswa
Revision: 985940
archrelease: copy trunk to community-testing-x86_64
Added:
crun/repos/community-testing-x86_64/
crun/repos/community-testing-x86_64/PKGBUILD
(from rev 985939, crun/trunk/PKGBUILD)
----------+
PKGBUILD | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
Copied: crun/repos/community-testing-x86_64/PKGBUILD (from rev 985939, crun/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2021-07-26 21:07:08 UTC (rev 985940)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud <foxboron at archlinux.org>
+# Contributor: hexchian <i at hexchain dot org>
+
+pkgname=crun
+pkgver=0.21
+pkgrel=1
+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')
+depends=('yajl' 'systemd-libs' 'libcap' 'libseccomp')
+makedepends=('libtool' 'python' 'go-md2man' 'systemd')
+optdepends=(
+ 'criu: checkpoint support'
+)
+source=("https://github.com/containers/crun/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
+validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
+sha256sums=('9e482321883268a88022a23b72fbddcf36ec43cb482643534836fed242539802'
+ '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