summaryrefslogtreecommitdiff
path: root/community-staging
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-16 00:01:23 +0000
committerroot <root@rshg054.dnsready.net>2012-07-16 00:01:23 +0000
commit50a1eb604b2d5503a06d56b76347faa581160245 (patch)
tree0d29be50534518ab002e0e6da90300006b3aca58 /community-staging
parent1ed995034acd07688fe8e78b1d40901bcc662155 (diff)
Mon Jul 16 00:01:23 UTC 2012
Diffstat (limited to 'community-staging')
-rw-r--r--community-staging/fatrat/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/community-staging/fatrat/PKGBUILD b/community-staging/fatrat/PKGBUILD
new file mode 100644
index 000000000..195e8644a
--- /dev/null
+++ b/community-staging/fatrat/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 73722 2012-07-14 15:53:10Z stativ $
+# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com>
+pkgname=fatrat
+pkgver=1.2.0_beta2
+pkgrel=1
+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.xz)
+md5sums=('ad823d2a81f0583316ece815b928c71b')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ . /etc/profile.d/jre.sh
+ . /etc/profile.d/jdk.sh
+
+ cmake \
+ -DWITH_EVERYTHING=ON \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ .
+
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: