summarylogtreecommitdiffstats
path: root/armok-vision
blob: 66bbf8a1b4a44468bc9966d88e048feeb6c7a11a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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: