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/dconf |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/dconf')
-rw-r--r-- | extra/dconf/PKGBUILD | 26 | ||||
-rw-r--r-- | extra/dconf/dconf.install | 11 |
2 files changed, 37 insertions, 0 deletions
diff --git a/extra/dconf/PKGBUILD b/extra/dconf/PKGBUILD new file mode 100644 index 000000000..4d95f6bfa --- /dev/null +++ b/extra/dconf/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: +# Maintainer: Ionut Biru <ibiru@archlinux.org> +pkgname=dconf +pkgver=0.5.1 +pkgrel=1 +pkgdesc="A low-level configuration system." +arch=(i686 x86_64) +url="http://live.gnome.org/dconf" +license=('LGPL2.1') +depends=('glib2>=2.25.17') +makedepends=('vala' 'gobject-introspection' 'gtk2') +optdepends=('gtk2: for dconf-editor') +install=dconf.install +source=(http://download.gnome.org/sources/${pkgname}/0.5/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('0083d70e1b5e540d8d4b3f04fa5d17dff4c574136682fe3bdd9b5ecc196ec4f6') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --libexecdir=/usr/lib/dconf + make + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: diff --git a/extra/dconf/dconf.install b/extra/dconf/dconf.install new file mode 100644 index 000000000..5a87df82f --- /dev/null +++ b/extra/dconf/dconf.install @@ -0,0 +1,11 @@ +post_install() { + usr/bin/gio-querymodules usr/lib/gio/modules +} + +post_upgrade(){ + post_install +} + +post_remove() { + post_install +} |