Config.in 998 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. config BR2_PACKAGE_P7ZIP
  2. bool "p7zip"
  3. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # __sync_*_4 intrisics
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_USE_WCHAR
  7. help
  8. p7zip is a quick port of the command line version of 7-zip
  9. for Unix (see http://www.7-zip.org)
  10. 7-Zip is a file archiver with highest compression ratio.
  11. http://sourceforge.net/projects/p7zip
  12. if BR2_PACKAGE_P7ZIP
  13. choice
  14. prompt "p7zip binary"
  15. default BR2_PACKAGE_P7ZIP_7ZR
  16. config BR2_PACKAGE_P7ZIP_7ZA
  17. bool "7za"
  18. help
  19. Full 7za archiver. The program supports 7z, ZIP, CAB, ARJ,
  20. GZIP, BZIP2, TAR, CPIO, RPM and DEB formats
  21. config BR2_PACKAGE_P7ZIP_7ZR
  22. bool "7zr"
  23. help
  24. Lightweight 7zr archiver. The program only handles 7z archives
  25. and cannot handle encrypted archives
  26. endchoice
  27. endif
  28. comment "p7zip needs a toolchain w/ threads, wchar, C++"
  29. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  30. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP