summaryrefslogtreecommitdiff
path: root/testing/libxfce4ui/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/libxfce4ui/PKGBUILD')
-rw-r--r--testing/libxfce4ui/PKGBUILD41
1 files changed, 41 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: