crun: make go-md2man optional
This commit is contained in:
parent
21ee99ab0a
commit
f833e3608d
|
@ -1,10 +1,10 @@
|
||||||
# Template file for 'crun'
|
# Template file for 'crun'
|
||||||
pkgname=crun
|
pkgname=crun
|
||||||
version=0.15
|
version=0.15
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--disable-systemd"
|
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"
|
makedepends="libcap-devel libseccomp-devel yajl-devel"
|
||||||
short_desc="Lightweight OCI runtime written in C"
|
short_desc="Lightweight OCI runtime written in C"
|
||||||
maintainer="Imran Khan <imrankhan@teknik.io>"
|
maintainer="Imran Khan <imrankhan@teknik.io>"
|
||||||
|
@ -17,6 +17,14 @@ if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
||||||
makedepends+=" argp-standalone"
|
makedepends+=" argp-standalone"
|
||||||
fi
|
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() {
|
post_install() {
|
||||||
rm -f ${DESTDIR}/usr/lib/*.a
|
rm -f ${DESTDIR}/usr/lib/*.a
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue