diff options
author | root <root@rshg054.dnsready.net> | 2011-09-28 23:14:32 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-09-28 23:14:32 +0000 |
commit | f8db5d1487e8e0ceeb97a396e357c1540a047ed8 (patch) | |
tree | 7ad8dee5bda1fe535c9139770dc7316f9b780818 /community/premake3 | |
parent | ccb9d72bbf1ee4f7a54113eac76a16b0b5014869 (diff) |
Wed Sep 28 23:14:32 UTC 2011
Diffstat (limited to 'community/premake3')
-rw-r--r-- | community/premake3/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/premake3/PKGBUILD b/community/premake3/PKGBUILD new file mode 100644 index 000000000..ef6e87f4d --- /dev/null +++ b/community/premake3/PKGBUILD @@ -0,0 +1,27 @@ +# 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=1 +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 +} |