premake4: new package

This commit is contained in:
martell
2014-11-27 11:58:30 +00:00
parent 2bf3c83f4c
commit 44de856ef7

View File

@@ -0,0 +1,24 @@
# Maintainer: Martell Malone <martellmalone@gmail.com>
_realname=premake
pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}")
pkgver=4.3
pkgrel=1
pkgdesc="A build configuration tool. Describe your build using Lua and generate \
the project files for your specific toolset."
arch=('any')
url="http://premake.sourceforge.net"
license=('GPL')
source=("http://downloads.sourceforge.net/sourceforge/premake/premake-${pkgver}-src.zip")
md5sums=('8cfafee76f9665c93b2e9ad15b015eb7')
build() {
cd "$srcdir/${_realname}-${pkgver}/build/gmake.windows"
make
}
package() {
cd ${srcdir}/${_realname}-${pkgver}
install -Dm755 bin/release/premake4 ${pkgdir}${MINGW_PREFIX}/bin/premake4
}