summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorM0Rf302021-10-30 01:14:45 +0200
committerM0Rf302021-10-30 01:14:45 +0200
commit89ca93148ef3f984a534b66c3649f4d09c842796 (patch)
tree16920f4240d909f7ae086207b47e8cf6afd5b135
parent6356ed0cee7b2be3e28b78f7a7bf434b5dd964b8 (diff)
downloadaur-89ca93148ef3f984a534b66c3649f4d09c842796.tar.gz
abyss-engine-git: first commit
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD4
-rw-r--r--abyss-engine.install10
3 files changed, 15 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4d9bbd52acf7..523fa739d014 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = abyss-engine-git
- pkgdesc = a game engine designed to run games similar to 2000's style ARPGs such as Diablo II
+ pkgdesc = A game engine designed to run games similar to 2000's style ARPGs such as Diablo II
pkgver = r156.4a6ad0e
pkgrel = 1
url = https://github.com/AbyssEngine/AbyssEngine
+ install = abyss-engine.install
arch = i686
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index d8dc06f53309..6771eacbaabb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=abyss-engine-git
pkgver=r156.4a6ad0e
pkgrel=1
-pkgdesc="a game engine designed to run games similar to 2000's style ARPGs such as Diablo II"
+pkgdesc="A game engine designed to run games similar to 2000's style ARPGs such as Diablo II"
arch=('i686' 'x86_64')
url="https://github.com/AbyssEngine/AbyssEngine"
license=('GPL3')
@@ -14,6 +14,8 @@ source=("${pkgname%-git}::git+${url}"
"opendiablo2::git+https://github.com/AbyssEngine/OpenDiablo2"
"opendiablo2.sh"
)
+install="${pkgname%-git}.install"
+
sha256sums=('SKIP'
'SKIP'
'45666f5f052518b30217aef2a310b80eefff6e3a3822e3fec9aa3666dc8989e9')
diff --git a/abyss-engine.install b/abyss-engine.install
new file mode 100644
index 000000000000..2270055c06e2
--- /dev/null
+++ b/abyss-engine.install
@@ -0,0 +1,10 @@
+post_install() {
+ cat <<EOF
+Copy required files(e.g. d2exp.mpq,d2data.mpq..) to your Diablo 2 directory
+(default is ~/usr/share/opendiablo2/mpqs)
+EOF
+}
+
+post_upgrade() {
+ post_install
+}