mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-12 02:54:42 +08:00
37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||
|
# Contributor:Renan Biegelmeyer (RenanBS) <renan.biegel[at]gmail[.dot]com
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=qbittorrent
|
||
|
pkgver=2.6.6
|
||
|
pkgrel=1
|
||
|
pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.qbittorrent.org/"
|
||
|
license=('GPL')
|
||
|
depends=('qt' 'libtorrent-rasterbar>=0.15.5' 'xdg-utils')
|
||
|
makedepends=('boost' 'geoip')
|
||
|
optdepends=('python2: needed for search'
|
||
|
'geoip: improves peer country resolution')
|
||
|
install=qbittorrent.install
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.gz)
|
||
|
md5sums=('438ad9b298bc9289c5462c31a09ed5ce')
|
||
|
|
||
|
build()
|
||
|
{
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package()
|
||
|
{
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
make INSTALL_ROOT=${pkgdir} install
|
||
|
}
|