talimat 552 B

12345678910111213141516171819202122232425
  1. # Description: GConf yapılandırma veritabanı sistemi için Python bağları
  2. # URL: http://www.gnome.org/
  3. # Packager: milisarge
  4. # Depends on: python-gtk gconf
  5. _name=gnome-python
  6. name=python-gconf
  7. version=2.28.1
  8. release=1
  9. source=(http://download.gnome.org/sources/$_name/${version%.*}/$_name-$version.tar.bz2)
  10. build() {
  11. cd $_name-$version
  12. PYTHON=python2 ./configure --prefix=/usr \
  13. --disable-gtk-doc \
  14. --disable-allbindings \
  15. --enable-gconf
  16. make
  17. make DESTDIR=$PKG install
  18. rm -rf $PKG/usr/share/gtk-doc
  19. rm -rf $PKG/usr/lib/pkgconfig
  20. }