summaryrefslogtreecommitdiff
path: root/community/bam
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-06-04 00:01:23 +0000
committerroot <root@rshg054.dnsready.net>2012-06-04 00:01:23 +0000
commit1e6588d64f084decf287a58b7ff93ff0ce4d0446 (patch)
tree29bf5b8778e1eb67871d9e6e8bb6e205bdde5db7 /community/bam
parent80053e720288b6205a59c52c1b31c14a0f830989 (diff)
Mon Jun 4 00:01:23 UTC 2012
Diffstat (limited to 'community/bam')
-rw-r--r--community/bam/PKGBUILD22
1 files changed, 22 insertions, 0 deletions
diff --git a/community/bam/PKGBUILD b/community/bam/PKGBUILD
new file mode 100644
index 000000000..fb6384301
--- /dev/null
+++ b/community/bam/PKGBUILD
@@ -0,0 +1,22 @@
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+# Contributors: Bmauet <careil.baptiste@gmail.com>
+pkgname=bam
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="A fast and flexible build system using Lua"
+arch=('i686' 'x86_64')
+url=http://github.com/matricks/bam
+license=('ZLIB')
+source=("https://github.com/downloads/matricks/bam/${pkgname}-${pkgver}.tar.gz")
+md5sums=('2f8e8336b8884110e8a355b12c9fa58a')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ sh make_unix.sh
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ install -D -m755 bam ${pkgdir}/usr/bin/bam
+ install -D -m755 license.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}