2013-11-25 21:35:01 +08:00
|
|
|
# Maintainer: Francesco Marinucci < franzmari[at]chakra-project[dot]it>
|
2011-01-25 09:35:33 +08:00
|
|
|
|
|
|
|
pkgname=qbittorrent
|
2014-05-04 20:04:01 +08:00
|
|
|
pkgver=3.1.9.2
|
2014-06-10 06:15:03 +08:00
|
|
|
pkgrel=2
|
2011-01-25 09:35:33 +08:00
|
|
|
pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library"
|
2013-01-20 01:06:26 +08:00
|
|
|
arch=('x86_64')
|
2011-01-25 09:35:33 +08:00
|
|
|
url="http://www.qbittorrent.org/"
|
|
|
|
license=('GPL')
|
2013-10-15 16:48:50 +08:00
|
|
|
depends=('qt' 'libtorrent-rasterbar' 'xdg-utils' 'boost-libs')
|
2011-01-25 09:35:33 +08:00
|
|
|
makedepends=('boost' 'geoip')
|
2011-01-25 10:29:12 +08:00
|
|
|
optdepends=('python2: needed for search'
|
2011-01-25 09:35:33 +08:00
|
|
|
'geoip: improves peer country resolution')
|
2012-03-16 22:51:37 +08:00
|
|
|
categories=('network')
|
2014-01-01 20:06:28 +08:00
|
|
|
screenshot=('http://sourceforge.net/projects/qbittorrent/screenshots/242189.jpg')
|
2011-01-25 09:35:33 +08:00
|
|
|
install=qbittorrent.install
|
2014-02-06 22:10:59 +08:00
|
|
|
source=("http://sourceforge.net/projects/qbittorrent/files/qbittorrent/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
2014-05-04 20:04:01 +08:00
|
|
|
md5sums=('530f6fc3909bf0576ca3cc7575daae97')
|
2011-01-25 09:35:33 +08:00
|
|
|
|
2012-05-30 19:21:06 +08:00
|
|
|
build()
|
2011-01-25 09:35:33 +08:00
|
|
|
{
|
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
2012-05-30 19:21:06 +08:00
|
|
|
package()
|
2011-01-25 09:35:33 +08:00
|
|
|
{
|
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
make INSTALL_ROOT=${pkgdir} install
|
2012-05-30 19:21:06 +08:00
|
|
|
}
|