23 lines
573 B
Plaintext
23 lines
573 B
Plaintext
# Description: Gnome uygulamalari icin konfigurasyon database
|
|
# URL: http://www.gnome.org/
|
|
# Packager: milisarge
|
|
# Depends on: dbus-glib intltool libxml2 gobject-introspection gtk3 polkit
|
|
|
|
name=gconf
|
|
version=3.2.6
|
|
release=2
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/GConf/${version%.*}/GConf-$version.tar.xz)
|
|
|
|
build() {
|
|
cd GConf-$version
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-static \
|
|
--libexecdir=/usr/lib/GConf \
|
|
--mandir=/usr/share/man \
|
|
--disable-orbit
|
|
make
|
|
make DESTDIR=$PKG install
|
|
ln -s gconf.xml.defaults $PKG/etc/gconf/gconf.xml.system
|
|
}
|