updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / holtz / PKGBUILD
blob585de48e077b7bec7fd7e600b5f2dcb5f902ff7e
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: davvil <davvil@gmail.com>
7 pkgname=holtz
8 pkgver=1.3.1
9 pkgrel=1
10 pkgdesc="A program for playing Zertz, Dvonn and Relax against human or computer players"
11 arch=('i686' 'x86_64')
12 url="http://holtz.sourceforge.net/"
13 license=('GPL')
14 depends=('wxgtk')
15 source=(http://sourceforge.net/projects/holtz/files/holtz/$pkgver/$pkgname-$pkgver.tar.gz)
16 md5sums=('1ec4b4560eefa0475bf81e7991398db9')
18 build() {
19   cd "$srcdir/$pkgname-$pkgver"
21   ./configure --prefix=/usr
22   make
25 package() {
26   cd "$srcdir/$pkgname-$pkgver"
28   make DESTDIR="$pkgdir/" install
31 # vim:set ts=2 sw=2 et: