talimat 814 B

12345678910111213141516171819202122232425262728293031323334
  1. # Tanım: Dosyaları çeşitli biçimlerde arşivlere ve arşivlerden kopyalar.
  2. # URL: http://downloads.sourceforge.net/heirloom
  3. # Paketçi: milisarge
  4. # Gerekler:
  5. # Grup: sistem
  6. isim=pax
  7. surum=070715
  8. devir=1
  9. kaynak=(http://downloads.sourceforge.net/heirloom/heirloom-070715.tar.bz2)
  10. derle() {
  11. cd heirloom-$surum
  12. sed -i build/mk.config \
  13. -e '/LIBZ/s@ -Wl[^ ]*@@g' \
  14. -e '/LIBBZ2/{s@^#@@;s@ -Wl[^ ]*@@g}' \
  15. -e '/BZLIB/s@0@1@'
  16. make makefiles
  17. make -C libcommon
  18. make -C libuxre
  19. make -C cpio
  20. install -v -dm 755 $PKG/usr/bin
  21. install -v -dm 755 $PKG/usr/share/man/man1
  22. install -v -m755 cpio/pax_su3 $PKG/usr/bin/pax
  23. install -v -m644 cpio/pax.1 $PKG/usr/share/man/man1
  24. }