summaryrefslogtreecommitdiff
path: root/testing/xfce4-settings/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/xfce4-settings/PKGBUILD')
-rw-r--r--testing/xfce4-settings/PKGBUILD49
1 files changed, 49 insertions, 0 deletions
diff --git a/testing/xfce4-settings/PKGBUILD b/testing/xfce4-settings/PKGBUILD
new file mode 100644
index 000000000..5cf3275d5
--- /dev/null
+++ b/testing/xfce4-settings/PKGBUILD
@@ -0,0 +1,49 @@
+# $Id: PKGBUILD 157701 2012-04-29 02:55:18Z foutrelis $
+# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
+# Contributor: tobias <tobias funnychar archlinux.org>
+# Contributor: Corrado Primier <bardo@aur.archlinux.org>
+
+pkgname=xfce4-settings
+pkgver=4.10.0
+pkgrel=1
+pkgdesc="Settings manager for xfce"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/"
+license=('GPL2')
+groups=('xfce4')
+depends=('exo' 'garcon' 'libxfce4ui' 'libnotify' 'libxklavier'
+ 'gnome-icon-theme' 'gtk-engines' 'gtk2-xfce-engine')
+makedepends=('intltool')
+optdepends=('libcanberra: for sound control')
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2
+ xfce4-settings-xml-4.10.0.patch)
+sha256sums=('0843f09ba9673f1d1b5df8dce4a17b63c183a9ba3be75fb6ef99a67fc8c1f77e'
+ '544d4409bac1cba1c0897317838cf2e24345f6ed4e3bf497a89b38d2643925c1')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ # enable gnome icon theme, clearlooks theme and font hinting by default
+ # (taken from Fedora)
+ patch -Np1 -i "$srcdir/xfce4-settings-xml-4.10.0.patch"
+
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --disable-static \
+ --enable-xrandr \
+ --enable-xcursor \
+ --enable-libnotify \
+ --enable-libxklavier \
+ --enable-pluggable-dialogs \
+ --enable-sound-settings \
+ --disable-debug
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: