mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
35 lines
941 B
Bash
Executable File
35 lines
941 B
Bash
Executable File
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Contributor:Renan Biegelmeyer (RenanBS) <renan.biegel[at]gmail[.dot]com
|
|
|
|
pkgname=qbittorrent
|
|
pkgver=2.9.9
|
|
pkgrel=1
|
|
pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library"
|
|
screenshot="http://sourceforge.net/dbimage.php?id=242189"
|
|
arch=('i686' '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')
|
|
install=qbittorrent.install
|
|
source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('9b7b216f5beccf76871d5adb91222e04')
|
|
|
|
build()
|
|
{
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package()
|
|
{
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make INSTALL_ROOT=${pkgdir} install
|
|
}
|