void-packages/srcpkgs/mk-configure/template
2019-05-02 11:44:12 +02:00

41 lines
1.2 KiB
Bash

# Template file for 'mk-configure'
pkgname=mk-configure
version=0.32.0
revision=1
wrksrc="${pkgname}-${pkgname}-${version}"
build_style=gnu-makefile
make_cmd=bmake
make_build_args="PREFIX=/usr"
make_install_args="${make_build_args} MANDIR=/usr/share/man"
make_check_target="test"
checkdepends="automake glib-devel groff pkg-config bison flex"
hostmakedepends="bmake bmkdep"
depends="bmake bmkdep"
short_desc="Lightweight replacement for GNU autotools"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="BSD-2-Clause, BSD-3-Clause"
homepage="https://github.com/cheusov/mk-configure/archive/"
distfiles="https://github.com/cheusov/${pkgname}/archive/${pkgname}-${version}.tar.gz"
checksum=69cf872f23c9e1a7edea5ed469b959823b2365602b60861ca7b21dffa097e98f
disable_parallel_build=yes
post_extract() {
rm -r tests/pkg_config_2 # different wording
rm -r tests/*lua*
rm -r examples/*lua*
rm -r examples/*lex*
vsed -i -e 's/-Wabi//g' mk/mkc_imp.platform.sys.mk
}
pre_build() {
${make_cmd} all-scripts PROG.awk=/usr/bin/awk PREFIX=/usr
}
pre_check() {
case "$XBPS_TARGET_MACHINE" in
*-musl)
sed -i 's|Cannot allocate|Out of|g' examples/hello_errwarn/expect.out ;;
esac
}
post_install() {
vlicense doc/LICENSE
rm ${DESTDIR}/usr/share/doc/${pkgname}/LICENSE
}