diff options
Diffstat (limited to 'testing/libxfce4ui')
-rw-r--r-- | testing/libxfce4ui/PKGBUILD | 41 | ||||
-rw-r--r-- | testing/libxfce4ui/libxfce4ui.install | 13 |
2 files changed, 54 insertions, 0 deletions
diff --git a/testing/libxfce4ui/PKGBUILD b/testing/libxfce4ui/PKGBUILD new file mode 100644 index 000000000..a34407e6f --- /dev/null +++ b/testing/libxfce4ui/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 157633 2012-04-29 02:53:32Z foutrelis $ +# Maintainer: Evangelos Foutras <evangelos@foutrelis.com> +# Contributor: Xavier Devlamynck <magicrhesus@ouranos.be> + +pkgname=libxfce4ui +pkgver=4.10.0 +pkgrel=1 +pkgdesc="Commonly used Xfce widgets among Xfce applications" +arch=('i686' 'x86_64') +url="http://www.xfce.org/" +license=('GPL2') +depends=('libxfce4util' 'gtk2' 'xfconf' 'libsm' 'startup-notification' + 'hicolor-icon-theme') +makedepends=('intltool' 'gtk-doc') +#replaces=('libxfcegui4') - later when all is ported +options=('!libtool') +install=libxfce4ui.install +source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2) +sha256sums=('a2b9fa288ccb5f16fa13264e507ba3f7b8da0176da259a11239f21538c0ea3e2') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --enable-gtk-doc \ + --disable-debug \ + --with-vendor-info='Arch Linux' + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: diff --git a/testing/libxfce4ui/libxfce4ui.install b/testing/libxfce4ui/libxfce4ui.install new file mode 100644 index 000000000..e4f8fd06c --- /dev/null +++ b/testing/libxfce4ui/libxfce4ui.install @@ -0,0 +1,13 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim:set ts=2 sw=2 et: |