updated on Mon Jan 16 00:01:41 UTC 2012
[aur-mirror.git] / qstat-svn / PKGBUILD
blobff1abfe51e56231af49602b1e087a046e51717c1
1 # Contributor: Slash <demodevil5[at]yahoo[dot]com>
3 pkgname=qstat-svn
4 pkgver=367
5 pkgrel=1
6 pkgdesc="Qstat is a command line utility that displays the status of internet game servers including Quake"
7 url="http://www.qstat.org/"
8 arch=('i686' 'x86_64')
9 license=('GPL')
10 depends=('glibc')
11 makedepends=('autoconf' 'svn')
12 replaces=('qstat-cvs')
13 conflicts=('qstat' 'qstat-cvs')
14 provides=('qstat')
15 source=()
16 md5sums=()
18 _svntrunk="https://qstat.svn.sourceforge.net/svnroot/qstat/trunk/qstat2"
19 _svnmod="qstat2"
21 build() {
22     cd $srcdir
24     if [ -d $_svnmod/.svn ]; then
25         (cd $_svnmod && svn up -r $pkgver)
26     else
27         svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
28     fi
30     msg "SVN checkout done or server timeout"
31     msg "Starting make..."
33     cp -r $_svnmod $_svnmod-build
34     cd $_svnmod-build
36     ./autogen.sh
37     ./configure --prefix=/usr --sysconfdir=/etc
39     make
42 package() {
43     cd $srcdir/$_svnmod-build
45     make DESTDIR=$pkgdir install
47     rm -rf $srcdir/$_svnmod-build