summaryrefslogtreecommitdiff
path: root/extra/dconf/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/dconf/PKGBUILD')
-rw-r--r--extra/dconf/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/dconf/PKGBUILD b/extra/dconf/PKGBUILD
new file mode 100644
index 000000000..601ccbe31
--- /dev/null
+++ b/extra/dconf/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 123352 2011-05-10 15:42:26Z ibiru $
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+pkgname=dconf
+pkgver=0.7.5
+pkgrel=1
+pkgdesc="A low-level configuration system."
+arch=(i686 x86_64 'mips64el')
+url="http://live.gnome.org/dconf"
+license=('LGPL2.1')
+depends=('glib2')
+makedepends=('vala' 'gobject-introspection' 'gtk3')
+optdepends=('gtk3: for dconf-editor')
+install=dconf.install
+source=(http://download.gnome.org/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('e2103e8207744903790e9fac6427fa394bb485a0c7f4e0d03b0fb43268c34f33')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./configure --prefix=/usr --sysconfdir=/etc \
+ --libexecdir=/usr/lib/dconf
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et: