Date: Friday, October 8, 2021 @ 14:53:51 Author: jelle Revision: 1028021
Enable criu support properly The criu package needs to be enabled as (make)depends to make the configure script enable it and then becomes a full dependency instead of an optdep. Modified: crun/trunk/PKGBUILD ----------+ PKGBUILD | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-10-08 14:24:49 UTC (rev 1028020) +++ PKGBUILD 2021-10-08 14:53:51 UTC (rev 1028021) @@ -3,16 +3,13 @@ pkgname=crun pkgver=1.1 -pkgrel=1 +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') -depends=('yajl' 'systemd-libs' 'libcap' 'libseccomp') +depends=('yajl' 'systemd-libs' 'libcap' 'libseccomp' 'criu') makedepends=('libtool' 'python' 'go-md2man' 'systemd' 'git') -optdepends=( - 'criu: checkpoint support' -) source=("https://github.com/containers/crun/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc}) validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA') sha256sums=('ba282aadaf7987976c376d322f770354e210770bd8a53a670ee45f61d03f054e'
