crun: make go-md2man optional

This commit is contained in:
q66 2020-10-26 02:54:40 +01:00
parent 21ee99ab0a
commit f833e3608d

View file

@ -1,10 +1,10 @@
# Template file for 'crun'
pkgname=crun
version=0.15
revision=1
revision=2
build_style=gnu-configure
configure_args="--disable-systemd"
hostmakedepends="pkg-config libtool python3 go-md2man"
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>"
@ -17,6 +17,14 @@ 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
post_install() {
rm -f ${DESTDIR}/usr/lib/*.a
}