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-05-10 06:08:41 +00:00
version=20150505
revision=2
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-05-10 06:08:41 +00:00
checksum=31460211253921689df6ce7cd177a983d3a97df8df934b006a2bcee0919eb3ea
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
}