summaryrefslogtreecommitdiff
path: root/community/dopewars/PKGBUILD
blob: 2ce608fc2831e4fafbc9857d707aaefe11e4b4a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# $Id: PKGBUILD 19596 2008-11-28 02:08:18Z thayer $
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Contributor: Jeff Mickey <jeff@archlinux.org>
# Maintainer: Thayer Williams <thayer@archlinux.org>

pkgname=dopewars
pkgver=1.5.12
pkgrel=4
pkgdesc="dopewars is a Drug dealing game set in New York"
url="http://dopewars.sourceforge.net/"
license=('GPL')
arch=('i686' 'x86_64' 'mips64el')
depends=('gtk2>=2.12.11' 'alsa-lib' 'audiofile' 'esd' 'sdl_mixer' 'ncurses>=5.6-7')
install='dopewars.install'
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('debf749de9053dc2fb2e74c37ae06206')

build() {
    cd $srcdir/$pkgname-$pkgver

    ./configure --prefix=/usr --localstatedir=/var/games \
        --mandir=/usr/share/man || return 1
    make || return 1
    make DESTDIR=$pkgdir install || return 1

    # setup shortcut menu entries
    mkdir -p $pkgdir/usr/share/applications
    mv $pkgdir/usr/share/gnome/apps/Games/dopewars.desktop \
       $pkgdir/usr/share/applications
    rm -r $pkgdir/usr/share/gnome

    # set appropriate permissions and destinations
    chown root:games $pkgdir/usr/bin/dopewars
    chmod 2755 $pkgdir/usr/bin/dopewars
    chown root:games $pkgdir/var/games
    chmod 775 $pkgdir/var/games

    # Handle the scores file creation in the install script
    rm $pkgdir/var/games/dopewars.sco
}