desktop/kwooty/PKGBUILD

32 lines
866 B
Bash
Raw Normal View History

2011-07-14 19:22:57 +08:00
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
pkgname=kwooty
2011-08-25 00:48:59 +08:00
pkgver=0.7.2
pkgrel=1
2011-07-14 19:22:57 +08:00
pkgdesc="A friendly nzb usenet binary downloader."
arch=('i686' 'x86_64')
url="http://kwooty.sourceforge.net/"
license=('GPL2')
2011-08-08 00:30:57 +08:00
depends=('kde-workspace')
2011-07-14 19:22:57 +08:00
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")
2011-08-25 00:48:59 +08:00
md5sums=('5597c05b39b23a8c00cca3dba4389563')
2011-07-14 19:22:57 +08:00
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
}