summaryrefslogtreecommitdiff
path: root/community/bam/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/bam/PKGBUILD
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/bam/PKGBUILD')
-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
+}