diff options
author | Cecil <knoppmyth@gmail.com> | 2012-09-03 03:48:25 (GMT) |
---|---|---|
committer | Cecil <knoppmyth@gmail.com> | 2012-09-03 03:48:25 (GMT) |
commit | 5b60b2a21e504020b1724a2c01c5f398b04b8f79 (patch) | |
tree | 0c87260ec9b57457260fcaead9ff2526d5e85459 /abs/extra/premake/PKGBUILD | |
parent | 0f974e2ffd930b90d7ac04f8ac2db296882e0dec (diff) | |
download | linhes_pkgbuild-5b60b2a21e504020b1724a2c01c5f398b04b8f79.zip linhes_pkgbuild-5b60b2a21e504020b1724a2c01c5f398b04b8f79.tar.gz linhes_pkgbuild-5b60b2a21e504020b1724a2c01c5f398b04b8f79.tar.bz2 |
premake:initial inclusion. closes #801
Diffstat (limited to 'abs/extra/premake/PKGBUILD')
-rw-r--r-- | abs/extra/premake/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/abs/extra/premake/PKGBUILD b/abs/extra/premake/PKGBUILD new file mode 100644 index 0000000..f4343e1 --- /dev/null +++ b/abs/extra/premake/PKGBUILD @@ -0,0 +1,25 @@ +# Contributor: Anders Bergh <anders1@gmail.com> +# Contributor: Mildred <silkensedai@online.fr> +# Maintainer: Daniel J Griffiths <griffithsdj@archlinux.us> + +pkgname=premake +pkgver=3.7 +pkgrel=1 +pkgdesc="A build configuration tool. Describe your build using Lua and generate \ +the project files for your specific toolset." +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 || return 1 +} + +package() { + cd ${srcdir}/Premake-${pkgver} + install -Dm755 bin/premake ${pkgdir}/usr/bin/premake +} |