updated on Sun Jan 15 04:04:02 UTC 2012
[aur-mirror.git] / tou / PKGBUILD
blob07ced2c3bda008ed2db8102011877909e0bd7927
1 # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> 
2 pkgname=tou
3 pkgver=1.0
4 pkgrel=1
5 pkgdesc="Tunnels Of the Underground (TOU) is a fast paced action side-view game with a good amount of weapons and space ships to choose from."
6 url="http://tou.has.it/"
7 arch=(i686 x86_64)
8 depends=()
9 [ "$CARCH" = i686   ] && depends=('wine')
10 [ "$CARCH" = x86_64 ] && depends=('bin32-wine')
11 source=(tou tou.desktop tou.png \
12         http://doubleskill.de/svens_stuff/tou10.tar.gz)
13 license=('freeware')
14 #install=(tou.install)
15 noextract=()
16 #options=(!strip)
17 md5sums=('1b51595f6f34755d32cd74e631372aff' 
18          '198cbf094416470fb8f3d81fa271cd74' 
19          '5041dbdf8f54508212d6ffe1f65d2c11' 
20          'b406cb160e67709a9c08e79dbab61a38')
22 build() {
23         # Install documentation
24         install -d -m755 ${pkgdir}/usr/share/doc/tou
25         mv ${srcdir}/tou10/*.htm ${pkgdir}/usr/share/doc/tou
26         mv ${srcdir}/tou10/helpgfx ${pkgdir}/usr/share/doc/tou/
28         # Clean ${srcdir}
29         rm ${srcdir}/tou10/uninstall*
30         rmdir ${srcdir}/tou10/swap
32         # Initial directories for game files
33         install -d -m755 ${pkgdir}/usr/share/tou
34         mv ${srcdir}/tou10/* ${pkgdir}/usr/share/tou/
35         
36         # Now lets manually change all the permissions since its a Windows game
37         find ${pkgdir}/usr/share/tou -type d -exec chmod 755 "{}" \;
38         find ${pkgdir}/usr/share/tou -type f -exec chmod 644 "{}" \;
39         find ${pkgdir}/usr/share/doc/tou -type d -exec chmod 755 "{}" \;
40         find ${pkgdir}/usr/share/doc/tou -type f -exec chmod 644 "{}" \;
41         
42         # Install scripts for the user to run
43         install -d -m755 ${pkgdir}/usr/bin
44         install -m755 tou ${pkgdir}/usr/bin
46         # Install icon
47         install -Dm644 ${srcdir}/tou.desktop ${pkgdir}/usr/share/applications/tou.desktop
48         install -Dm644 ${srcdir}/tou.png ${pkgdir}/usr/share/pixmaps/tou.png