updated on Fri Jan 13 00:14:41 UTC 2012
[aur-mirror.git] / loiq / PKGBUILD
blob95f24b30b9a9fe5c4c09b49d95451ce17d68c69a
1 # Maintainer: Anonymous
2 pkgname=loiq
3 pkgver=0.3.1a
4 pkgrel=1
5 pkgdesc="Low Orbit Ion Cannon - Qt Edition"
6 arch=('x86_64' 'i686')
7 source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2")
8 license=('GPL')
9 groups=()
10 depends=('qt')
11 makedepends=()
12 optdepends=()
13 provides=()
14 conflicts=()
15 replaces=()
16 backup=()
17 options=()
18 install=
19 changelog=
20 url="http://sourceforge.net/projects/loiq/"
21 noextract=()
22 md5sums=('74bf705cb96dd2929b02a92bab3e0140')
24 build() {
25   cd "$srcdir/$pkgname-$pkgver"
27   rm src/*.o # why the hell are the files even there?
28   rm src/moc_* # the moc files are too old, qmake will generate new
30   qmake
31   make
34 package() {
35   cd "$srcdir/$pkgname-$pkgver"
36   mkdir -p $pkgdir/usr/bin/ 
37   install -m 755 -t $pkgdir/usr/bin/ loiq
40 # vim:set ts=2 sw=2 et: