summaryrefslogtreecommitdiff
path: root/testing/exo/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/exo/PKGBUILD')
-rw-r--r--testing/exo/PKGBUILD44
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/exo/PKGBUILD b/testing/exo/PKGBUILD
new file mode 100644
index 000000000..7fd77ab6e
--- /dev/null
+++ b/testing/exo/PKGBUILD
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 157629 2012-04-29 02:53:26Z foutrelis $
+# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
+# Contributor: tobias <tobias funnychar archlinux.org>
+# Contributor: Aurelien Foret <orelien@chez.com>
+
+pkgname=exo
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="Extensions to Xfce by os-cillation"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/projects/exo"
+license=('GPL2' 'LGPL')
+groups=('xfce4')
+depends=('libxfce4ui' 'gtk2' 'hicolor-icon-theme' )
+makedepends=('perl-uri' 'intltool' 'gtk-doc' 'xorg-iceauth')
+optdepends=('perl-uri: for mail-compose helper script')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/0.8/$pkgname-$pkgver.tar.bz2)
+sha256sums=('6e21aa30692affcb45fc8283d034da4a02221d26e3e1facb968d04fed4ba05b0')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ # Python 2 fix
+ export PYTHON=python2
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib/xfce4 \
+ --localstatedir=/var \
+ --disable-static \
+ --enable-gtk-doc \
+ --disable-debug
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: