desktop/qbittorrent/PKGBUILD

38 lines
1.1 KiB
Bash
Raw Normal View History

2011-01-25 09:35:33 +08:00
#
# 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
2011-10-29 20:22:07 +08:00
pkgver=2.9.2
pkgrel=1
2011-01-25 09:35:33 +08:00
pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library"
2011-10-09 09:32:15 +08:00
screenshot="http://sourceforge.net/dbimage.php?id=242189"
2011-01-25 09:35:33 +08:00
arch=('i686' 'x86_64')
url="http://www.qbittorrent.org/"
license=('GPL')
depends=('qt' 'libtorrent-rasterbar' 'xdg-utils')
2011-01-25 09:35:33 +08:00
makedepends=('boost' 'geoip')
2011-01-25 10:29:12 +08:00
optdepends=('python2: needed for search'
2011-01-25 09:35:33 +08:00
'geoip: improves peer country resolution')
install=qbittorrent.install
source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.gz)
2011-10-29 20:22:07 +08:00
md5sums=('0c2188e0065be57e50c06f5934d5f7a2')
2011-01-25 09:35:33 +08:00
build()
{
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
package()
{
cd ${srcdir}/${pkgname}-${pkgver}
make INSTALL_ROOT=${pkgdir} install
}