talimat 957 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Tanım: Thunar dosya yöneticisi
  2. # URL: http://thunar.xfce.org
  3. # Paketçi: milisarge
  4. # Gerekler: libnotify libexif exo xfce4-libui xfce4-panel desktop-file-utils
  5. # Grup: masaüstü
  6. isim=thunar
  7. surum=1.6.12
  8. devir=1
  9. kaynak=(http://archive.xfce.org/src/xfce/thunar/${surum%.*}/Thunar-$surum.tar.bz2
  10. no-root-warning.patch)
  11. derle() {
  12. cd Thunar-$surum
  13. patch $SRC/Thunar-$surum/thunar/thunar-window.c $SRC/no-root-warning.patch
  14. ./configure \
  15. --prefix=/usr \
  16. --sysconfdir=/etc \
  17. --libexecdir=/usr/lib \
  18. --localstatedir=/var \
  19. --disable-static \
  20. --enable-gio-unix \
  21. --enable-dbus \
  22. --enable-startup-notification \
  23. --enable-gudev \
  24. --enable-notifications \
  25. --enable-exif \
  26. --enable-pcre \
  27. --disable-debug
  28. make
  29. make DESTDIR=$PKG install
  30. sed -i 's:x-directory/gnome-default-handler;::' $PKG/usr/share/applications/Thunar-folder-handler.desktop
  31. rm -rf $PKG/usr/share/gtk-doc
  32. rm -rf $PKG/usr/share/man
  33. rm -rf $PKG/usr/share/doc
  34. }