blob: 5a9e8be4de8016578c1712d5d0d5400cad92c697 (
plain)
1 # Description: An obsolete configuration database system
2 # URL: https://web.archive.org/web/20170226030208/https://projects.gnome.org/gconf/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: dbus-glib intltool libxml2
5
6 name=gconf
7 version=3.2.6
8 release=2
9 source=(https://download.gnome.org/sources/GConf/3.2/GConf-$version.tar.xz)
10
11 build() {
12 cd GConf-$version
13
14 ./configure \
15 --prefix=/usr \
16 --libexecdir=/usr/lib/$name \
17 --disable-orbit \
18 --disable-nls \
19 --enable-gsettings-backend=no
20
21 make
22 make DESTDIR=$PKG install
23
24 rm -r $PKG/usr/share/gtk-doc
25 rm -r $PKG/usr/share/locale
26 }
|