talimat 812 B

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