blob: 49dc6d6d92f608f448b9cb1bdd4b723f73d9a624 (
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
42
43
44
45
46
47
|
# $Id: PKGBUILD 114978 2014-07-05 02:50:46Z fyan $
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Contributor: Jeff Mickey <jeff@archlinux.org>
# Contributor: Thayer Williams <thayer@archlinux.org>
# Maintainer: schuay <jakob.gruber@gmail.com
pkgname=dopewars
pkgver=1.5.12
pkgrel=7
pkgdesc="A drug dealing game set in New York"
url="http://dopewars.sourceforge.net/"
license=('GPL')
arch=('i686' 'x86_64')
depends=('gtk2' 'alsa-lib' 'audiofile' 'sdl_mixer' 'ncurses')
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
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
# 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"
}
|