* update crun to 1.15-1

This commit is contained in:
Alexander Baldeck 2024-05-21 21:59:49 +02:00
parent 594c500c3e
commit 9c261d8ded

View File

@ -3,7 +3,7 @@
# Contributor: hexchian <i at hexchain dot org>
pkgname=crun
pkgver=1.14.4
pkgver=1.15
pkgrel=1
pkgdesc="A fast and lightweight fully featured OCI runtime and C library for running containers"
url="https://github.com/containers/crun"
@ -14,13 +14,12 @@ depends=('yajl' 'systemd-libs' 'libcap' 'libseccomp')
depends_powerpc64le=('criu')
depends_x86_64=('criu')
makedepends=('libtool' 'python' 'go-md2man' 'systemd' 'git')
source=("https://github.com/containers/crun/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
source=("git+https://github.com/containers/crun.git#tag=$pkgver?signed")
validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
sha256sums=('fd6af195a73ae9bf3aea1a6c976a914492324c828542f35a7f1570a659f2e512'
'SKIP')
sha256sums=('fe11077986ef9980e6f5e0c5c0aadce8fc68928f11b5d28c041a38818bdfaeba')
build() {
cd "$pkgname-$pkgver"
cd "$pkgname"
./autogen.sh
./configure \
--prefix=/usr \
@ -31,6 +30,6 @@ build() {
}
package() {
cd "$pkgname-$pkgver"
cd "$pkgname"
make DESTDIR="$pkgdir" install
}