void-packages/srcpkgs/bmake/template

43 lines
1.1 KiB
Bash
Raw Normal View History

2014-07-03 11:44:33 +00:00
# Template file for 'bmake'
pkgname=bmake
2015-09-13 05:11:50 +00:00
version=20150910
2015-06-11 07:59:51 +00:00
revision=1
2014-07-03 11:44:33 +00:00
create_wrksrc=yes
short_desc="Portable version of the NetBSD make build tool"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
2014-07-03 11:44:33 +00:00
license="BSD"
homepage="http://www.crufty.net/help/sjg/bmake.html"
distfiles="http://www.crufty.net/ftp/pub/sjg/bmake-${version}.tar.gz"
2015-09-13 05:11:50 +00:00
checksum=f7badd54de07b4f7c37161a9034d6b3bb09a48795dcde4b208ba7a9381ad6bf1
2014-07-03 11:44:33 +00:00
do_configure() {
cd bmake
2015-05-11 16:39:33 +00:00
sed -i '1s,:,#!/bin/sh,g' install-sh
2014-07-03 11:44:33 +00:00
if [ "$CROSS_BUILD" ]; then
mkdir -p bmake-host
cd bmake-host
# Build a native bmake for installation
unset CC LD AR CFLAGS
../boot-strap op=build
cp linux*-*/bmake .
fi
}
do_build() {
mkdir -p bmake/bmake-build
cd bmake/bmake-build
if [ "$CROSS_BUILD" ]; then
_args="--host=${XBPS_CROSS_TRIPLET}"
fi
../boot-strap ${_args} --prefix=/usr op=build
}
do_install() {
cd bmake/bmake-build
if [ "$CROSS_BUILD" ]; then
sed -i "s,^BMAKE=$,BMAKE=${wrksrc}/bmake/bmake-host/bmake," ../boot-strap
fi
../boot-strap --prefix=/usr --install-destdir=${DESTDIR} op=install
2014-11-17 09:42:32 +00:00
rm -rf ${DESTDIR}/usr/share/man/cat1
vman ../bmake.1
2014-07-03 11:44:33 +00:00
}