void-packages/srcpkgs/bmake/template
2015-09-13 07:11:50 +02:00

43 lines
1.1 KiB
Bash

# Template file for 'bmake'
pkgname=bmake
version=20150910
revision=1
create_wrksrc=yes
short_desc="Portable version of the NetBSD make build tool"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="BSD"
homepage="http://www.crufty.net/help/sjg/bmake.html"
distfiles="http://www.crufty.net/ftp/pub/sjg/bmake-${version}.tar.gz"
checksum=f7badd54de07b4f7c37161a9034d6b3bb09a48795dcde4b208ba7a9381ad6bf1
do_configure() {
cd bmake
sed -i '1s,:,#!/bin/sh,g' install-sh
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
rm -rf ${DESTDIR}/usr/share/man/cat1
vman ../bmake.1
}