12345678910111213141516171819202122232425262728 |
- name=gconf
- version=3.2.6
- release=1
- source=(https://download.gnome.org/sources/GConf/${version%.*}/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
- }
|