1 # Contributor: Artificial Intelligence <polarbeard@gmail.com>
6 pkgdesc="A one of a kind 2d sidescroller with a twist you play as a totally physics based ball of tar."
8 url='http://www.chroniclogic.com/gish.htm'
9 license=('custom: "commercial"')
11 depends=('libvorbis' 'openal' 'sdl' 'gcc-libs' 'sdl_image' 'mesa')
12 source=('gish_1_6.tar.gz' 'Gish.png' 'gish.desktop' 'gish32bit.launcher' 'gish64bit.launcher')
13 md5sums=('946b390177628de07a3316af47b8fd90' 'f3831056f039b0d6867781d21b857993' '86aa2affaaa7076b05b8dc8ca1d64a33' '7d15b8e4f5b5204e6a48854bdf2ca6aa' '180ba20319790fe471f929e8f3905c48')
20 # Create Destination Directory
21 install -d $pkgdir/opt/Gish
24 bsdtar -xf $srcdir/gish_1_6.tar.gz
27 cp -r $srcdir/gish/* $pkgdir/opt/Gish
30 install -D -m 644 $srcdir/Gish.png \
31 $pkgdir/usr/share/pixmaps/Gish.png
34 install -D -m 644 $srcdir/gish.desktop \
35 $pkgdir/usr/share/applications/gish.desktop
37 # Install Game Launcher
39 if [ "$CARCH" = "x86_64" ]; then
40 install -D -m 755 $srcdir/gish64bit.launcher \
44 install -D -m 755 $srcdir/gish32bit.launcher \
49 # Set groupship to :games
50 chown -R :games $pkgdir/opt/Gish || return 1
51 chmod -R g+rwX $pkgdir/opt/Gish || return 1