Kwooty added.

This commit is contained in:
Adrián Chaves Fernández (Gallaecio) 2011-07-14 11:22:57 +00:00
parent c69b992315
commit b396e5e250
2 changed files with 52 additions and 0 deletions

21
kwooty/ChangeLog Normal file
View File

@ -0,0 +1,21 @@
2010-12-26 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 0.6.3-1 :
Upgraded.
2010-12-26 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 0.6.2-1 :
Upgraded.
Reported in the CCR.
2010-12-17 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 0.6.1-1 :
Upgraded.
Reported by WillingMagic <willingmagic@gmail.com>.
2010-10-20 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 0.5.2-1 :
Imported from Arch Linux's AUR: http://aur.archlinux.org/packages.php?ID=32520

31
kwooty/PKGBUILD Normal file
View File

@ -0,0 +1,31 @@
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
pkgname=kwooty
pkgver=0.7.1
pkgrel=1
pkgdesc="A friendly nzb usenet binary downloader."
arch=('i686' 'x86_64')
url="http://kwooty.sourceforge.net/"
license=('GPL2')
depends=('kdebase-workspace>=4.2')
makedepends=('cmake' 'automoc4')
optdepends=('unrar: automatic RAR-archive extraction.'
'p7zip: automatic zip and 7z archive extraction.'
'par2cmdline: automatic file repairing.')
changelog=ChangeLog
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('4a27f2d91f339876afbac8f825f48950')
build() {
cd $srcdir/$pkgname-$pkgver
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
..
make
}
package() {
cd $srcdir/$pkgname-$pkgver/build
make DESTDIR=$pkgdir install
}