23 lines
725 B
Bash
23 lines
725 B
Bash
|
# Template file for 'crun'
|
||
|
pkgname=crun
|
||
|
version=0.15
|
||
|
revision=1
|
||
|
build_style=gnu-configure
|
||
|
configure_args="--disable-systemd"
|
||
|
hostmakedepends="pkg-config libtool python3 go-md2man"
|
||
|
makedepends="libcap-devel libseccomp-devel yajl-devel"
|
||
|
short_desc="Lightweight OCI runtime written in C"
|
||
|
maintainer="Imran Khan <imrankhan@teknik.io>"
|
||
|
license="GPL-2.0-or-later, LGPL-2.1-or-later"
|
||
|
homepage="https://github.com/containers/crun"
|
||
|
distfiles="https://github.com/containers/crun/releases/download/${version}/crun-${version}.tar.gz"
|
||
|
checksum=5f88f6c6a951473406700fbf634e665dc75596a032b06bf9c91911cd999347a0
|
||
|
|
||
|
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
||
|
makedepends+=" argp-standalone"
|
||
|
fi
|
||
|
|
||
|
post_install() {
|
||
|
rm -f ${DESTDIR}/usr/lib/*.a
|
||
|
}
|