diff options
Diffstat (limited to 'abs/extra/dconf/PKGBUILD')
-rw-r--r-- | abs/extra/dconf/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/abs/extra/dconf/PKGBUILD b/abs/extra/dconf/PKGBUILD new file mode 100644 index 0000000..4d95f6b --- /dev/null +++ b/abs/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: |