summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--tuxemon-git.install5
3 files changed, 9 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 28de80e8a49f..6c69cd332eda 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = tuxemon-git
pkgdesc = A free, open source monster-fighting RPG.
pkgver = r34.fcee2e8
- pkgrel = 1.0.1
+ pkgrel = 2
url = http://www.tuxemon.org
+ install = tuxemon-git.install
arch = i686
arch = x86_64
groups = games
diff --git a/PKGBUILD b/PKGBUILD
index b6a23659e882..e9f954f12082 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Sebastian Gumprich <sebastian.gumprich@38.de>
pkgname=tuxemon-git
pkgver=r34.fcee2e8
-pkgrel=1.0.1
+pkgrel=2
pkgdesc="A free, open source monster-fighting RPG."
arch=('i686' 'x86_64')
url="http://www.tuxemon.org"
@@ -11,6 +11,7 @@ depends=('python2' 'python2-pygame' 'python2-pytmx' 'python2-yapsy')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
+install=${pkgname}.install
source=('git://github.com/Tuxemon/Tuxemon.git')
md5sums=('SKIP')
diff --git a/tuxemon-git.install b/tuxemon-git.install
new file mode 100644
index 000000000000..297a966ba7b5
--- /dev/null
+++ b/tuxemon-git.install
@@ -0,0 +1,5 @@
+post_install() {
+ msg "Start the game like this:"
+ msg "cd /usr/share/Tuxemon/"
+ msg "python2 main.py"
+}