mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
837 B
Bash
24 lines
837 B
Bash
|
# $Id: PKGBUILD 30480 2009-03-20 04:42:44Z eric $
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk> with contributions from Andreas Schweitzer <sig11@gmx.net>
|
||
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
||
|
|
||
|
pkgname=qstat
|
||
|
pkgver=2.11
|
||
|
pkgrel=2
|
||
|
pkgdesc="Qstat is a command line utility that displays the status of internet game servers including Quake"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://www.qstat.org/"
|
||
|
license=('custom:Artistic')
|
||
|
depends=('glibc')
|
||
|
backup=('etc/qstat.cfg')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/qstat/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('26c09831660ef9049fe74b786b80d091')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --sysconfdir=/etc || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
|
||
|
}
|