desktop/qbittorrent/PKGBUILD
2013-07-30 11:07:00 +00:00

34 lines
999 B
Bash
Executable File

# maintainer: abveritas@chakra-project.org
# Contributor:Renan Biegelmeyer (RenanBS) <renan.biegel[at]gmail[.dot]com
pkgname=qbittorrent
pkgver=3.0.11
pkgrel=1
pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library"
screenshot="http://sourceforge.net/dbimage.php?id=242189"
arch=('x86_64')
url="http://www.qbittorrent.org/"
license=('GPL')
depends=('qt' 'libtorrent-rasterbar' 'xdg-utils')
makedepends=('boost' 'geoip')
optdepends=('python2: needed for search'
'geoip: improves peer country resolution')
categories=('network')
screenshot=('http://sourceforge.net/projects/qbittorrent/screenshots/242189')
install=qbittorrent.install
source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.xz")
md5sums=('de50c6d2bff0a11f47d9179427337347')
build()
{
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
package()
{
cd ${srcdir}/${pkgname}-${pkgver}
make INSTALL_ROOT=${pkgdir} install
}