summaryrefslogtreecommitdiff
path: root/community/xfe
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/xfe
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/xfe')
-rw-r--r--community/xfe/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/community/xfe/PKGBUILD b/community/xfe/PKGBUILD
new file mode 100644
index 000000000..e0f55d3b7
--- /dev/null
+++ b/community/xfe/PKGBUILD
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 43121 2011-03-24 07:49:15Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Eric Belanger <belanger@astro.umontreal.ca>
+# Contributor: Ravi Desai <ravster3@hotmail.com>
+
+pkgname=xfe
+pkgver=1.32.3
+pkgrel=1
+pkgdesc="X File Explorer (Xfe) is an MS-Explorer like file manager for X."
+arch=('i686' 'x86_64')
+url="http://roland65.free.fr/xfe"
+license=("GPL")
+depends=('fox')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('f9fe72a2a9cf55fb36ac2f9d20f8210a')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr
+ sed -i 's|inline||' src/xfeutils.cpp
+ make
+ make DESTDIR=$pkgdir install
+}