summarylogtreecommitdiffstats
path: root/armok-vision
diff options
context:
space:
mode:
Diffstat (limited to 'armok-vision')
-rw-r--r--armok-vision18
1 files changed, 18 insertions, 0 deletions
diff --git a/armok-vision b/armok-vision
new file mode 100644
index 000000000000..66bbf8a1b4a4
--- /dev/null
+++ b/armok-vision
@@ -0,0 +1,18 @@
+#!/usr/bin/sh
+
+cd "/opt/dwarffortress/armok-vision"
+arch=$(uname -m)
+if [ "$arch" = "i686" ]; then
+ exec "./Armok Vision.x86"
+elif [ "$arch" = "x86_64" ]; then
+ exec "./Armok Vision.x86_64"
+else
+ echo "Architecture $arch not recognized. Please notify the AUR package maintainer by posting a comment here:"
+ echo "https://aur.archlinux.org/packages/armok-vision/"
+fi
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# sh-indentation: 2
+# End: