summaryrefslogtreecommitdiff
path: root/extra/xfconf
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-12-24 23:14:50 +0000
committerroot <root@rshg054.dnsready.net>2011-12-24 23:14:50 +0000
commit2d2e64c7c198ff82ea6e306f7673168dcf5ddca7 (patch)
treed1db6175abc5826c498c3140c028b5b7fbac5ee1 /extra/xfconf
parentd53a615fd6ab6dfeb42da11086f96698cb08fe40 (diff)
Sat Dec 24 23:14:50 UTC 2011
Diffstat (limited to 'extra/xfconf')
-rw-r--r--extra/xfconf/PKGBUILD57
1 files changed, 32 insertions, 25 deletions
diff --git a/extra/xfconf/PKGBUILD b/extra/xfconf/PKGBUILD
index 0c5496af8..f677e21d8 100644
--- a/extra/xfconf/PKGBUILD
+++ b/extra/xfconf/PKGBUILD
@@ -1,42 +1,49 @@
-# $Id: PKGBUILD 130064 2011-07-01 20:39:13Z andyrtr $
-# Maintainer: AndyRTR <andyrtr@archlinux.org>
+# $Id: PKGBUILD 145609 2011-12-23 17:39:17Z foutrelis $
+# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
# Contributor: tobias <tobias funnychar archlinux.org>
pkgname=xfconf
-pkgver=4.8.0
-pkgrel=2
-pkgdesc="a simple client-server configuration storage and query system"
+pkgver=4.8.1
+pkgrel=1
+pkgdesc="A simple client-server configuration storage and query system"
arch=('i686' 'x86_64')
-license=('GPL2')
url="http://www.xfce.org/"
+license=('GPL2')
groups=('xfce4')
# http://www.xfce.org/documentation/requirements
-# keep dbus and gtk2, see also http://bugs.archlinux.org/task/14536
-depends=( "libxfce4util>=4.8.0" "dbus-glib" 'dbus' 'gtk2')
-makedepends=('pkgconfig' 'perl-extutils-depends' 'perl-extutils-pkgconfig' 'glib-perl' 'intltool' 'gtk-doc' 'chrpath')
+# keep dbus, see also http://bugs.archlinux.org/task/14536
+depends=('libxfce4util' 'dbus-glib' 'dbus')
+makedepends=('pkgconfig' 'perl-extutils-depends' 'perl-extutils-pkgconfig'
+ 'glib-perl' 'intltool' 'gtk-doc' 'chrpath')
options=('!libtool' '!emptydirs')
-source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('0f11ed1ec7789c5c4c3fcc7cdb3c2940')
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.8/$pkgname-$pkgver.tar.bz2)
+sha256sums=('9860737539fab2b852e8c07c50c205a5fbe894b08bcb4488a70e3fd6c75993cb')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --libexecdir=/usr/lib/xfce4 \
- --localstatedir=/var \
- --disable-static \
- --enable-gtk-doc \
- --with-perl-options=INSTALLDIRS="vendor" \
- --disable-debug
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib/xfce4 \
+ --localstatedir=/var \
+ --disable-static \
+ --enable-gtk-doc \
+ --with-perl-options=INSTALLDIRS="vendor" \
+ --disable-debug
make
}
package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
+
# remove unneeded dynloader bootstrap file
- rm ${pkgdir}/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.bs
-
+ rm "$pkgdir/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.bs"
+
# fix insecure rpath, http://bugs.archlinux.org/task/19980
- chrpath -d ${pkgdir}/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.so
+ chrpath -d "$pkgdir/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.so"
}
+
+# vim:set ts=2 sw=2 et: