vp-build/srcpkgs/mk-configure/template

41 lines
1.2 KiB
Bash

# Template file for 'mk-configure'
pkgname=mk-configure
version=0.30.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=bae3b94ae7c2dc20e9a7672b7c4cdf5df547d946973ec756259a917fcd110acf
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*
}
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
}