mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
34 lines
1.0 KiB
Bash
Executable File
34 lines
1.0 KiB
Bash
Executable File
# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
|
|
# Maintainer: Francesco Marinucci < franzmari[at]chakra-project[dot]it>
|
|
|
|
pkgname=qbittorrent
|
|
pkgver=3.1.11
|
|
pkgrel=1
|
|
pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library"
|
|
arch=('x86_64')
|
|
url="http://www.qbittorrent.org/"
|
|
license=('GPL')
|
|
depends=('qt' 'libtorrent-rasterbar' 'xdg-utils' 'boost-libs')
|
|
makedepends=('boost' 'geoip')
|
|
optdepends=('python2: needed for search'
|
|
'geoip: improves peer country resolution')
|
|
categories=('network')
|
|
screenshot=('http://sourceforge.net/projects/qbittorrent/screenshots/242189.jpg')
|
|
install=qbittorrent.install
|
|
source=("http://sourceforge.net/projects/qbittorrent/files/qbittorrent/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('7fcdcd23b61d8cc9e51ac4931c038018')
|
|
|
|
build()
|
|
{
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package()
|
|
{
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make INSTALL_ROOT=${pkgdir} install
|
|
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/COPYING
|
|
}
|