2 # Contributor: Jan Jezek <honzin.jezek@gmail.com>
7 pkgdesc="Extensions to Xfce by os-cillation."
9 license=('GPL2' 'LGPL2')
10 #url="http://www.os-cillation.de/en/open-source-projekte/libexo/"
11 url="http://git.xfce.org/xfce/exo/tree/README"
13 depends=('libxfce4util-git' 'gtk2>=2.18.6-1' 'glib2>=2.22.4-1' 'hal>=0.5.14-1' 'hicolor-icon-theme')
14 makedepends=('xfce4-dev-tools-git' 'git' 'pkgconfig' 'libnotify' 'perl-uri' 'pygtk>=2.13')
15 optdepends=('libnotify: enables notification support'
16 'perl: enables mail-compose helper script')
19 install=${pkgname}.install
22 _gitroot="git://git.xfce.org/xfce/exo"
27 msg "Getting sources..."
29 if [ -d "$srcdir/$_gitname" ] ; then
30 cd $_gitname && git pull origin
31 msg "The local files are updated."
36 msg "GIT checkout done or server timeout"
37 msg "Starting build..."
41 export PYTHON="/usr/bin/python2"
44 ./autogen.sh --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
45 --localstatedir=/var --disable-static --enable-notifications \
46 --enable-python || return 1
48 make DESTDIR=${pkgdir} install || return 1