desktop/qbittorrent/PKGBUILD

31 lines
937 B
Bash
Raw Normal View History

2011-01-25 09:35:33 +08:00
pkgname=qbittorrent
2015-05-10 16:41:44 +08:00
pkgver=3.2.0
pkgrel=2
2015-05-10 16:41:44 +08:00
pkgdesc="A bittorrent client written in C++ / Qt 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')
depends=('qt' 'libtorrent-rasterbar' 'xdg-utils' 'boost-libs')
makedepends=('boost' 'geoip')
2015-05-10 16:41:44 +08:00
optdepends=('python3: needed for search'
2011-01-25 09:35:33 +08:00
'geoip: improves peer country resolution')
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")
2015-05-10 16:41:44 +08:00
md5sums=('55a582d86db0db9734aee446b8daa267')
2011-01-25 09:35:33 +08:00
build()
2011-01-25 09:35:33 +08:00
{
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
2011-01-25 09:35:33 +08:00
make
}
package()
2011-01-25 09:35:33 +08:00
{
cd ${srcdir}/${pkgname}-${pkgver}
make INSTALL_ROOT=${pkgdir} install
2014-09-28 20:32:21 +08:00
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/COPYING
}