updated on Wed Jan 18 20:10:41 UTC 2012
[aur-mirror.git] / bmake / PKGBUILD
blob82c8c6fcbf95b8630da97b69895c7a345b55c957
1 # Maintainer:  Devin Cofer <ranguvar{AT]archlinux[DOT}us>
2 # Contributor: Imanol Celaya <ilcra1989@gmail.com>
4 pkgname=bmake
5 pkgver=20110306
6 pkgrel=1
7 pkgdesc="Portable version of the NetBSD 'make' build tool"
8 arch=('i686' 'x86_64')
9 url="http://www.crufty.net/help/sjg/bmake.html"
10 license=('BSD')
12 depends=('bmake-mk-files')
14 source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz")
15 sha256sums=('9af65a5d50799b913f64be84669ff2dffe02b549d0df9981a2fc0dbd1595ba87')
17 build() {
18         rm -rf bmake-build
19         mkdir bmake-build
20         cd bmake-build
22         ../bmake/configure --prefix=/usr --with-default-sys-path=/usr/share/mk
24         sh make-bootstrap.sh
26 package() {
27         install -Dm755 bmake-build/bmake "$pkgdir"/usr/bin/bmake
28         install -Dm644 bmake/bmake.1 "$pkgdir"/usr/share/man/man1/bmake.1