mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
760 B
Bash
22 lines
760 B
Bash
|
# $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')
|