summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Swanson2023-05-08 09:32:26 -0700
committerMike Swanson2023-05-08 09:33:48 -0700
commit2a33c9ff38682ceed87bd77fc7283312c388a722 (patch)
tree167b06ac1de2629887e8d7a8386c106ab6b1e425
parentf45ad550292cd9b556e13200b77a850290cbf2e1 (diff)
downloadaur-crispy-doom.tar.gz
Symlink all the setup binaries together, make the desktop launcher work
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD8
2 files changed, 8 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index da74f0d79f56..c74ba1fed41e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = crispy-doom
pkgdesc = Vanilla-compatible enhanced Doom engine
pkgver = 6.0
- pkgrel = 2
+ pkgrel = 3
url = http://fabiangreffrath.github.io/crispy-doom
install = crispy-doom.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index d38af863df59..61d93c77df99 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=crispy-doom
pkgdesc="Vanilla-compatible enhanced Doom engine"
pkgver=6.0
-pkgrel=2
+pkgrel=3
arch=('i686' 'x86_64' 'aarch64')
url="http://fabiangreffrath.github.io/crispy-doom"
license=('GPL2')
@@ -46,4 +46,10 @@ package() {
share/man/man5/hexen.cfg.5 \
share/man/man5/strife.cfg.5 \
share/man/man6/chocolate-{server,setup}.6
+
+ rm bin/crispy-{heretic,hexen,strife}-setup
+ mv bin/crispy-doom-setup bin/crispy-setup
+ for game in doom heretic hexen strife; do
+ ln -s crispy-setup bin/crispy-${game}-setup
+ done
}