blob: 2027c2a44b93596bbc4f4c5e32fcdb3582db705b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Système de configuration de base de données
# URL: http://www.gnome.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: orbit2, policykit, glib, gtk
name=gconf
version=2.26.2
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/GConf/2.26/GConf-$version.tar.bz2\
GConf-$version-sysconfdir-1.patch)
build() {
cd GConf-$version
patch -Np1 -i ../GConf-$version-sysconfdir-1.patch
./configure --prefix=$GNOME_PREFIX\
--sysconfdir=/etc \
--libexecdir=$GNOME_PREFIX/lib/GConf \
--with-dbus-service-dir=/usr/share/dbus-1/services \
--mandir=$GNOME_PREFIX/share/man
make
make DESTDIR=$PKG install
rm -r $PKG/$GNOME_PREFIX/share/gtk-doc
}
|