2013-04-24 19:31:13 +08:00
|
|
|
# maintainer: abveritas@chakra-project.org
|
2011-01-25 09:35:33 +08:00
|
|
|
# Contributor:Renan Biegelmeyer (RenanBS) <renan.biegel[at]gmail[.dot]com
|
|
|
|
|
|
|
|
pkgname=qbittorrent
|
2013-07-30 19:07:00 +08:00
|
|
|
pkgver=3.0.11
|
2011-08-05 00:07:17 +08:00
|
|
|
pkgrel=1
|
2011-01-25 09:35:33 +08:00
|
|
|
pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library"
|
2011-10-09 09:32:15 +08:00
|
|
|
screenshot="http://sourceforge.net/dbimage.php?id=242189"
|
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')
|
2011-08-05 00:07:17 +08:00
|
|
|
depends=('qt' 'libtorrent-rasterbar' 'xdg-utils')
|
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')
|
2012-08-22 12:48:21 +08:00
|
|
|
screenshot=('http://sourceforge.net/projects/qbittorrent/screenshots/242189')
|
2011-01-25 09:35:33 +08:00
|
|
|
install=qbittorrent.install
|
2012-08-22 12:48:21 +08:00
|
|
|
source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.xz")
|
2013-07-30 19:07:00 +08:00
|
|
|
md5sums=('de50c6d2bff0a11f47d9179427337347')
|
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
|
|
|
}
|