summaryrefslogtreecommitdiff
path: root/community/fatrat/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/fatrat/PKGBUILD')
-rw-r--r--community/fatrat/PKGBUILD42
1 files changed, 0 insertions, 42 deletions
diff --git a/community/fatrat/PKGBUILD b/community/fatrat/PKGBUILD
deleted file mode 100644
index 36a4a254f..000000000
--- a/community/fatrat/PKGBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 94068 2013-07-13 16:36:05Z stativ $
-# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com>
-pkgname=fatrat
-pkgver=1.2.0_beta2
-pkgrel=8
-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' 'libtorrent-rasterbar' 'pion' 'qtwebkit' 'curl')
-optdepends=('geoip: GeoIP support' 'java-runtime: Java plugins')
-makedepends=('boost' 'cmake' 'java-environment')
-source=(http://www.dolezel.info/download/data/fatrat/fatrat-$pkgver.tar.xz \
- QTBUG-22829-workaround.diff pion-5.0.diff)
-md5sums=('ad823d2a81f0583316ece815b928c71b'
- '9c017f227437b8a72e92219ee6d58578'
- 'd7d398e7b6415c0a81eb4960d8271997')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # workaround the moc bug (QTBUG-22829) with new boost
- patch -Np1 < "$srcdir/QTBUG-22829-workaround.diff" || true
- # fix help generation with qt4
- sed -s 's|qcollectiongenerator|qcollectiongenerator-qt4|' -i CMakeLists.txt
- # fix for the new pion
- patch -Np1 < "$srcdir/pion-5.0.diff" || true
-
- 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: