summaryrefslogtreecommitdiff
path: root/community/premake3
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/premake3
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/premake3')
-rw-r--r--community/premake3/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/premake3/PKGBUILD b/community/premake3/PKGBUILD
new file mode 100644
index 000000000..12820716c
--- /dev/null
+++ b/community/premake3/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 64785 2012-02-18 04:46:23Z svenstaro $
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+# Contributor: Anders Bergh <anders1@gmail.com>
+# Contributor: Mildred <silkensedai@online.fr>
+# Contributor: Daniel J Griffiths <griffithsdj@archlinux.us>
+
+pkgname=premake3
+pkgver=3.7
+pkgrel=2
+pkgdesc="A simple build configuration and project generation tool using lua"
+arch=('i686' 'x86_64')
+url="http://premake.sourceforge.net"
+license=('GPL')
+makedepends=()
+source=("http://downloads.sourceforge.net/sourceforge/premake/premake-src-${pkgver}.zip")
+md5sums=('8d30dc5bbc52aad81abb1509c1dd7d8f')
+
+build() {
+ cd ${srcdir}/Premake-${pkgver}
+
+ make
+}
+
+package() {
+ cd ${srcdir}/Premake-${pkgver}
+
+ install -Dm755 bin/premake ${pkgdir}/usr/bin/premake
+}