summaryrefslogtreecommitdiff
path: root/community/instead/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/instead/PKGBUILD')
-rw-r--r--community/instead/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/community/instead/PKGBUILD b/community/instead/PKGBUILD
new file mode 100644
index 000000000..5cc378466
--- /dev/null
+++ b/community/instead/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 76494 2012-09-19 14:03:04Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Peter Kosyh <p.kosyhgmail.com>
+
+pkgname=instead
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="instead quest interpreter"
+arch=('i686' 'x86_64')
+url="http://instead.googlecode.com/"
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
+optdepends=('instead-launcher: install and update INSTEAD games from net')
+source=(http://instead.googlecode.com/files/instead_${pkgver}.tar.gz)
+md5sums=('08acf9f7de60b8e1c23d6e9368093d1f')
+
+build() {
+ cd "${srcdir}/instead-${pkgver}"
+ echo "2" | ./configure.sh
+ make PREFIX=/usr
+}
+
+package() {
+ cd "${srcdir}/instead-${pkgver}"
+ make DESTDIR="${pkgdir}" PREFIX=/usr install
+}