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/libxfce4ui/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libxfce4ui/PKGBUILD')
-rw-r--r-- | extra/libxfce4ui/PKGBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/extra/libxfce4ui/PKGBUILD b/extra/libxfce4ui/PKGBUILD new file mode 100644 index 000000000..2260f1c93 --- /dev/null +++ b/extra/libxfce4ui/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 106352 2011-01-16 16:37:35Z andyrtr $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: Xavier Devlamynck <magicrhesus@ouranos.be> + +pkgname=libxfce4ui +pkgver=4.8.0 +pkgrel=1 +pkgdesc="share commonly used Xfce widgets among the Xfce applications" +arch=('i686' 'x86_64') +license=('GPL2') +url="http://www.xfce.org/" +groups=('xfce4') +depends=('libxfce4util>=4.8.0' 'gtk2' "xfconf>=4.8.0" 'startup-notification') +makedepends=('intltool' 'gtk-doc' 'glade') +optdepends=('glade: for using the included glade module') +#replaces=('libxfcegui4') - later when all is ported +options=('!libtool') +source=(http://archive.xfce.org/src/xfce/libxfce4ui/4.8/${pkgname}-${pkgver}.tar.bz2) +md5sums=('df9acb3328dff905bd0777b84532b69f') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --enable-gtk-doc \ + --disable-debug + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} |