aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <demizide@gmail.com>2013-06-28 17:25:59 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-06-01 16:03:57 +0200
commit32914afd28e336976e104fc26a714c2a1f0ea2ea (patch)
tree46e9838a71f6a2064fe77057c61fd67a915d1b98
parent6b979b5cec70045310d77310f8d5fa5c7edf2be8 (diff)
downloadpkgbuilds-32914afd28e336976e104fc26a714c2a1f0ea2ea.tar.xz
Added openhexagon PKGBUILD (bin release packaging)
-rw-r--r--.SRCINFO19
-rw-r--r--PKGBUILD30
2 files changed, 49 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 0000000..d68e3e1
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,19 @@
+# Generated by makepkg 4.2.1
+# Mon Jun 1 13:54:12 UTC 2015
+pkgbase = openhexagon
+ pkgdesc = C++ open source clone of Super Hexagon. (binary)
+ pkgver = 1.92
+ pkgrel = 1
+ url = http://vittorioromeo.info/projects.html
+ arch = i686
+ arch = x86_64
+ license = custom:AFL
+ depends = lua51
+ options = !strip
+ source = http://vittorioromeo.info/Downloads/OpenHexagon/Linux/OpenHexagonV1.92.tar.gz
+ source = https://raw.github.com/SuperV1234/SSVOpenHexagon/master/LICENSE
+ md5sums = bda07a9d91a9dd8538d9a7a26562de69
+ md5sums = 808282b4d6cf58dacf16fae6068bd030
+
+pkgname = openhexagon
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..945048c
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,30 @@
+# Maintainer: Johannes Löthberg <demizide@gmail.com>
+# Contributor: Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com>
+# Contributor: Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
+
+pkgname=openhexagon
+pkgver=1.92
+pkgrel=1
+pkgdesc="C++ open source clone of Super Hexagon. (binary)"
+arch=('i686' 'x86_64')
+url="http://vittorioromeo.info/projects.html"
+options=(!strip)
+license=('custom:AFL')
+depends=('lua51')
+source=(http://vittorioromeo.info/Downloads/OpenHexagon/Linux/OpenHexagonV1.92.tar.gz
+ https://raw.github.com/SuperV1234/SSVOpenHexagon/master/LICENSE)
+md5sums=('bda07a9d91a9dd8538d9a7a26562de69'
+ '808282b4d6cf58dacf16fae6068bd030')
+package() {
+ install -Dd "${pkgdir}/opt/OpenHexagon1.92"
+ cp -r ${srcdir}/OpenHexagon1.92/ ${pkgdir}/opt/
+
+ install -Dd ${pkgdir}/usr/bin
+ ln -s /opt/OpenHexagon1.92/OpenHexagon ${pkgdir}/usr/bin/openhexagon
+
+ # need world writeable Profiles for creating profiles and config for... config
+ chmod 777 ${pkgdir}/opt/OpenHexagon1.92/{Profiles,config.json}
+
+ install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+}