mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
29 lines
1.1 KiB
Bash
29 lines
1.1 KiB
Bash
# $Id: PKGBUILD 30898 2009-03-22 17:08:53Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gconf-editor
|
|
pkgver=2.26.0
|
|
pkgrel=1
|
|
pkgdesc="Graphical gconf registry editor"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
depends=('gconf>=2.26.0-2')
|
|
makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils>=0.16.0')
|
|
url="http://www.gnome.org"
|
|
groups=('gnome-extra')
|
|
options=(!emptydirs)
|
|
install=gconf-editor.install
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/gconf-editor/2.26/gconf-editor-${pkgver}.tar.bz2)
|
|
md5sums=('2dc76415b22d805cfacfcd5fb98f185c')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-scrollkeeper || return 1
|
|
make || return 1
|
|
make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1
|
|
|
|
install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
|
|
gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gconf-editor ${pkgdir}/etc/gconf/schemas/*.schemas || return 1
|
|
rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
|
|
}
|