summaryrefslogtreecommitdiff
path: root/community/bmake
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-10-30 01:04:25 -0700
committerroot <root@rshg054.dnsready.net>2013-10-30 01:04:25 -0700
commit7c151ac5589d3dbef5972f69a62b847ecf565bfa (patch)
tree9450bd13169930e602731e9c431b79fdaaad2c02 /community/bmake
parent38b1ce25596ae456fefb3214a73c3d1005da568f (diff)
Wed Oct 30 01:01:59 PDT 2013
Diffstat (limited to 'community/bmake')
-rw-r--r--community/bmake/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/bmake/PKGBUILD b/community/bmake/PKGBUILD
new file mode 100644
index 000000000..76eb57865
--- /dev/null
+++ b/community/bmake/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 99556 2013-10-29 17:22:35Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Alex Szczuczko <alex at szc dot ca>
+# Contributor: Devin Cofer <ranguvar{AT]archlinux[DOT}us>
+# Contributor: Imanol Celaya <ilcra1989@gmail.com>
+
+pkgname=bmake
+pkgver=20131001
+pkgrel=1
+pkgdesc="Portable version of the NetBSD 'make' build tool"
+arch=('i686' 'x86_64')
+url="http://www.crufty.net/help/sjg/bmake.html"
+license=('BSD')
+depends=('bmake-mk-files')
+source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz")
+sha256sums=('0a91ac60b82270c4b4f21a43e66eb51c32b4df55e01ea592e42eb323909a559b')
+
+build() {
+ rm -rf bmake-build
+ mkdir bmake-build
+ cd bmake-build
+ ../bmake/configure --prefix=/usr --with-default-sys-path=/usr/share/mk
+ sh make-bootstrap.sh
+}
+
+package() {
+ install -Dm755 bmake-build/bmake "$pkgdir"/usr/bin/bmake
+ install -Dm644 bmake/bmake.1 "$pkgdir"/usr/share/man/man1/bmake.1
+}