summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2020-10-30 12:43:29 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2020-10-30 12:43:29 -0700
commitf2878522bb977953b139f7dbd7be65df23ec670e (patch)
treeb9d687c17a95dc536c4adc428f2e9b6a4bb8b72e
downloadpremake4-f2878522bb977953b139f7dbd7be65df23ec670e.tar.xz
Initial commitHEADmaster
-rw-r--r--PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..1fe5358
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,31 @@
+# Maintainer: jc_gargma <jc_gargma@iserlohn-fortress.net>
+# Maintainer (Arch): Sven-Hendrik Haase <svenstaro@gmail.com>
+# Contributor (Arch): revel <revelΘmuub·net>
+# Contributor (Arch): Marcos J. S. Magalhaes <mjsmagalhaes ^dot^ insc _at_ gmail ~dot~ com>
+
+# # I maintain this because:
+# Artix lacks this package entirely
+
+pkgname=premake4
+pkgver=4.3
+pkgrel=6
+pkgdesc="A simple build configuration and project generation tool using lua"
+arch=('x86_64')
+url="http://industriousone.com/premake"
+license=('BSD')
+provides=("premake4")
+source=("https://downloads.sourceforge.net/project/premake/Premake/$pkgver/premake-$pkgver-src.zip")
+b2sums=('5079f9d7c5dbe46d60149ec7c01523eaca5ab3cccce9f2f66d05905152ceb0b8bddaf181624288b722dd1534da6aef256ed5bb997db448f1499c8ab989277bc6')
+
+build() {
+ cd "$srcdir/premake-$pkgver/build/gmake.unix"
+
+ make
+}
+
+package() {
+ cd "$srcdir/premake-$pkgver"
+
+ install -Dm755 "bin/release/premake4" "${pkgdir}/usr/bin/premake4"
+ install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}