talimat 786 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Tanım: Xfce paneli için Yerler Menüsü eklentisi
  2. # URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin
  3. # Paketçi: yasarciv67
  4. # Gerekler: intltool libnotify xfce4-panel
  5. # Grup: sistem
  6. isim=xfce4-places-plugin
  7. surum=1.7.0
  8. devir=1
  9. kaynak=(http://archive.xfce.org/src/panel-plugins/$isim/${surum%.*}/$isim-$surum.tar.bz2
  10. mounts.patch
  11. undefined-symbol.patch
  12. )
  13. derle() {
  14. cd "$isim-$surum"
  15. # Disk olmayan diğer bağları göster (örn. NFS)
  16. patch -Np1 -i "${SRC}/mounts.patch"
  17. # Bug 11939
  18. patch -Np1 -i "${SRC}/undefined-symbol.patch"
  19. ./configure \
  20. --prefix=/usr \
  21. --sysconfdir=/etc \
  22. --libexecdir=/usr/lib \
  23. --localstatedir=/var \
  24. --disable-static \
  25. --disable-debug
  26. make
  27. make DESTDIR="$PKG" install
  28. }