summaryrefslogtreecommitdiff
path: root/community-staging/qbittorrent/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2011-12-18 15:46:12 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2011-12-18 15:46:12 +0100
commit82e56b34417677fc5ad8718a516874fb5351e60f (patch)
tree2f157396a89875f5f3543c62e7f4d5f9042cfb94 /community-staging/qbittorrent/PKGBUILD
parente63aad93b3e68c372e525d86c3277b2fa4bddb24 (diff)
parent146025aa1c838c12fa7b4873414da73816bfb6bd (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/python2-pymongo/PKGBUILD extra/clamav/PKGBUILD extra/claws-mail-extra-plugins/PKGBUILD extra/lcms2/PKGBUILD extra/libxi/PKGBUILD extra/xorg-server/PKGBUILD multilib/wine/PKGBUILD
Diffstat (limited to 'community-staging/qbittorrent/PKGBUILD')
-rw-r--r--community-staging/qbittorrent/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community-staging/qbittorrent/PKGBUILD b/community-staging/qbittorrent/PKGBUILD
new file mode 100644
index 000000000..e26f76684
--- /dev/null
+++ b/community-staging/qbittorrent/PKGBUILD
@@ -0,0 +1,33 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
+# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
+
+pkgname=qbittorrent
+pkgver=2.9.2
+pkgrel=7
+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' 'xdg-utils')
+makedepends=('boost' 'geoip')
+optdepends=('python: needed for search'
+ 'geoip: improves peer country resolution')
+install='qbittorrent.install'
+source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/qbittorrent-${pkgver}.tar.gz")
+md5sums=('0c2188e0065be57e50c06f5934d5f7a2')
+
+build() {
+ cd qbittorrent-${pkgver}
+
+ ./configure \
+ --prefix=/usr
+
+ make
+}
+
+package() {
+ cd qbittorrent-${pkgver}
+
+ make INSTALL_ROOT=${pkgdir} install
+}