bbef570be9
Closes: #30389 [via git-merge-pr]
37 lines
1 KiB
Bash
37 lines
1 KiB
Bash
# Template file for 'crun'
|
|
pkgname=crun
|
|
version=0.19.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-systemd"
|
|
hostmakedepends="pkg-config libtool python3 $(vopt_if man 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=7b190ff934355e69636e24c12864326a6ebccdbb12af1f14bead217118eb19cb
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
|
makedepends+=" argp-standalone"
|
|
fi
|
|
|
|
build_options="man"
|
|
desc_option_man="Use go-md2man to build manpages"
|
|
|
|
case "$XBPS_MACHINE" in
|
|
x86_64*|i686*|aarch64*|armv[67]*|ppc64le*) build_options_default="man";;
|
|
*) ;;
|
|
esac
|
|
|
|
do_check() {
|
|
if [ "$XBPS_CHECK_PKGS" = full ]; then
|
|
# most of the tests don't work inside a container
|
|
make check ${makejobs}
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
rm -f ${DESTDIR}/usr/lib/*.a
|
|
}
|