summaryrefslogtreecommitdiff
path: root/community-staging/fatrat
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-12-18 23:14:50 +0000
committerroot <root@rshg054.dnsready.net>2011-12-18 23:14:50 +0000
commitd8fd24a96ae712b2de3e9b05d937b135f41d016d (patch)
treed7720f7ed4640d7aff2d5c472aeabcfad87df24f /community-staging/fatrat
parent146025aa1c838c12fa7b4873414da73816bfb6bd (diff)
Sun Dec 18 23:14:50 UTC 2011
Diffstat (limited to 'community-staging/fatrat')
-rw-r--r--community-staging/fatrat/PKGBUILD38
1 files changed, 38 insertions, 0 deletions
diff --git a/community-staging/fatrat/PKGBUILD b/community-staging/fatrat/PKGBUILD
new file mode 100644
index 000000000..2c463a795
--- /dev/null
+++ b/community-staging/fatrat/PKGBUILD
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 60756 2011-12-17 15:17:48Z andrea $
+# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com>
+
+pkgname=fatrat
+pkgver=1.2.0_beta1
+pkgrel=3
+pkgdesc="QT4 based download manager with support for HTTP, FTP, SFTP, BitTorrent, rapidshare and more"
+arch=('i686' 'x86_64')
+url="http://fatrat.dolezel.info/"
+license=('GPL')
+depends=('gloox' 'qt' 'libtorrent-rasterbar' 'pion-net' 'qtwebkit')
+optdepends=('geoip: GeoIP support')
+makedepends=('boost' 'cmake' 'java-environment')
+source=(http://www.dolezel.info/download/data/fatrat/fatrat-$pkgver.tar.gz)
+md5sums=('7ce4d5e6318361f36ba5ac86a5755da9')
+
+build() {
+ cd $pkgname-$pkgver
+
+ . /etc/profile.d/jre.sh
+ . /etc/profile.d/jdk.sh
+
+ cmake \
+ -DWITH_EVERYTHING=ON \
+ -DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS="-lpthread" \
+ -DCMAKE_CXX_FLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=2" \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ .
+
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: