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/premake | |
parent | ccb9d72bbf1ee4f7a54113eac76a16b0b5014869 (diff) |
Wed Sep 28 23:14:32 UTC 2011
Diffstat (limited to 'community/premake')
-rw-r--r-- | community/premake/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/premake/PKGBUILD b/community/premake/PKGBUILD new file mode 100644 index 000000000..a239b435d --- /dev/null +++ b/community/premake/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: revel <revelΘmuub·net> +# Contributor: Marcos J. S. Magalhaes <mjsmagalhaes ^dot^ insc _at_ gmail ~dot~ com> + +pkgname=premake +pkgver=4.3 +pkgrel=1 +pkgdesc="A simple build configuration and project generation tool using lua" +arch=('i686' 'x86_64') +url="http://industriousone.com/premake" +license=('BSD') +provides=("premake4") +source=(http://downloads.sourceforge.net/project/premake/Premake/$pkgver/premake-$pkgver-src.zip) +md5sums=('8cfafee76f9665c93b2e9ad15b015eb7') + +build() { + cd $srcdir/premake-$pkgver/build/gmake.unix + + make +} + +package() { + install -dm755 ${pkgdir}/usr/bin + install -m755 $srcdir/premake-$pkgver/bin/release/premake4 ${pkgdir}/usr/bin +} |