forked from ports/contrib
27 lines
608 B
Plaintext
27 lines
608 B
Plaintext
# Description: An obsolete configuration database system
|
|
# URL: https://web.archive.org/web/20170226030208/https://projects.gnome.org/gconf/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: dbus-glib intltool libxml2
|
|
|
|
name=gconf
|
|
version=3.2.6
|
|
release=1
|
|
source=(https://download.gnome.org/sources/GConf/3.2/GConf-$version.tar.xz)
|
|
|
|
build() {
|
|
cd GConf-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-orbit \
|
|
--disable-nls \
|
|
--enable-gsettings-backend=no
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
rm -r $PKG/usr/share/locale
|
|
}
|