diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/exo/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/exo/PKGBUILD')
-rw-r--r-- | extra/exo/PKGBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/extra/exo/PKGBUILD b/extra/exo/PKGBUILD new file mode 100644 index 000000000..8998e12c4 --- /dev/null +++ b/extra/exo/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 106429 2011-01-16 21:30:41Z ibiru $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: tobias <tobias funnychar archlinux.org> +# Contributor: Aurelien Foret <orelien@chez.com> + +pkgname=exo +pkgver=0.6.0 +pkgrel=2 +pkgdesc="Extensions to Xfce by os-cillation" +arch=('i686' 'x86_64') +license=('GPL2' 'LGPL') +url="http://www.xfce.org/projects/exo" +groups=('xfce4') +depends=("libxfce4util>=4.8.1" 'gtk2' 'hicolor-icon-theme' ) +makedepends=('pygtk' '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.6/${pkgname}-${pkgver}.tar.bz2) +md5sums=('ac9deafdf9de426d8a03855ac549f424') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + # python2 fix + export PYTHON=python2 + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/xfce4 \ + --localstatedir=/var \ + --disable-static \ + --enable-gio-unix \ + --enable-python \ + --enable-gtk-doc \ + --disable-debug + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |