Pkgfile 657 B

12345678910111213141516171819202122232425262728
  1. # Description: An obsolete configuration database system
  2. # URL: https://download.gnome.org/sources/GConf/3.2/
  3. # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
  4. # Depends on: dbus-glib intltool libxml2
  5. # originally found at Petar Petrov's Github repo crux-ports
  6. name=gconf
  7. version=3.2.6
  8. release=1
  9. source=(https://download.gnome.org/sources/GConf/${version%.*}/GConf-$version.tar.xz)
  10. build() {
  11. cd GConf-$version
  12. ./configure \
  13. --prefix=/usr \
  14. --libexecdir=/usr/lib/$name \
  15. --disable-orbit \
  16. --disable-nls \
  17. --enable-gsettings-backend=no
  18. make
  19. make DESTDIR=$PKG install
  20. rm -r $PKG/usr/share/gtk-doc
  21. rm -r $PKG/usr/share/locale
  22. }