PKGBUILDs/community/qbittorrent/PKGBUILD

22 lines
760 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 3521 2009-10-04 20:37:13Z dgriffiths $
# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr>
pkgname=qbittorrent
pkgver=1.5.3
pkgrel=2
pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library"
arch=('i686' 'x86_64')
url="http://www.qbittorrent.org/"
license=('GPL')
depends=('qt' 'libtorrent-rasterbar>=0.14.4' 'curl' 'xdg-utils' 'zziplib' 'boost')
optdepends=('python: needed for search')
install=qbittorrent.install
source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.gz)
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --verbose --prefix=/usr || return 1
make || return 1
make INSTALL_ROOT="$pkgdir" install || return 1
}
md5sums=('3db3e435ac00dc997e3b9d816ae93c45')