summaryrefslogtreecommitdiff
path: root/community/doublecmd/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/doublecmd/PKGBUILD
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/doublecmd/PKGBUILD')
-rw-r--r--community/doublecmd/PKGBUILD72
1 files changed, 0 insertions, 72 deletions
diff --git a/community/doublecmd/PKGBUILD b/community/doublecmd/PKGBUILD
deleted file mode 100644
index cddc9f719..000000000
--- a/community/doublecmd/PKGBUILD
+++ /dev/null
@@ -1,72 +0,0 @@
-# vim:set ft=sh:
-# $Id: PKGBUILD 93494 2013-07-04 12:38:35Z idevolder $
-# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
-# Contributor: (sirocco AT ngs.ru)
-
-pkgbase=doublecmd
-pkgname=('doublecmd-gtk2' 'doublecmd-qt')
-pkgver=0.5.5
-_helpver=0.5.5
-pkgrel=1
-url="http://doublecmd.sourceforge.net/"
-arch=('i686' 'x86_64')
-license=('GPL')
-install="$pkgbase.install"
-provides=("$pkgbase")
-makedepends=('lazarus' 'qt4pas' 'gtk2')
-optdepends=(
- 'lua51: scripting'
- 'p7zip: support for 7zip archives'
- 'libunrar: support for rar archives'
-)
-source=(
- "http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-$pkgver-src.tar.gz"
- "http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-help-$_helpver-src.tar.gz"
-)
-sha256sums=('253ec036ec119c067f501247445acdd35d67ffd9693d246dc4e98897c6df6434'
- '5c5d00187df811df0734bf751a581bce7e1bdd4cf4639b2a1101f1da8743daaf')
-
-build() {
- cp -a $pkgbase-$pkgver $pkgbase-gtk
- cp -a $pkgbase-$pkgver $pkgbase-qt
-
- cd "$srcdir/$pkgbase-gtk"
- if [ "$CARCH" = "i686" ]; then
- sed -e '/fPIC/d' -i "$srcdir/$pkgbase-gtk/components/doublecmd/doublecmd_common.lpk"
- fi
- sed -e 's/\(export\ lazbuild=\).*/\1"$(which\ lazbuild) --lazarusdir=\/usr\/lib\/lazarus"/' -i build.sh
- ./build.sh beta gtk2
-
- cd "$srcdir/$pkgbase-qt"
- # dont use fPIC on i686
- if [ "$CARCH" = "i686" ]; then
- sed -e '/fPIC/d' -i "$srcdir/$pkgbase-qt/components/doublecmd/doublecmd_common.lpk"
- fi
- sed -e 's/\(export\ lazbuild=\).*/\1"$(which\ lazbuild) --lazarusdir=\/usr\/lib\/lazarus"/' -i build.sh
- ./build.sh beta qt
-}
-
-package_doublecmd-gtk2() {
- pkgdesc="twin-panel (commander-style) file manager (GTK)"
- depends=('gtk2')
- cd "$srcdir/$pkgbase-gtk"
- sed -e 's/LIB_SUFFIX=.*/LIB_SUFFIX=/g' -i ./install/linux/install.sh
- ./install/linux/install.sh --install-prefix="$pkgdir"
-
- # install doc
- cd "$srcdir/$pkgbase-help-$_helpver"
- cp -a * "$pkgdir/usr/share/$pkgbase/doc/"
-}
-
-package_doublecmd-qt() {
- pkgdesc="twin-panel (commander-style) file manager (QT)"
- depends=('qt4pas')
- cd "$srcdir/$pkgbase-qt"
- sed -e 's/LIB_SUFFIX=.*/LIB_SUFFIX=/g' -i ./install/linux/install.sh
- ./install/linux/install.sh --install-prefix="$pkgdir"
-
- # install doc
- cd "$srcdir/$pkgbase-help-$_helpver"
- cp -a * "$pkgdir/usr/share/$pkgbase/doc/"
-}
-