Config.in 848 B

123456789101112131415161718192021222324
  1. config BR2_PACKAGE_LRZIP
  2. bool "lrzip"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_USE_WCHAR
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_INSTALL_LIBSTDCPP
  7. select BR2_PACKAGE_ZLIB
  8. select BR2_PACKAGE_LZO
  9. select BR2_PACKAGE_BZIP2
  10. help
  11. A compression utility that excels at compressing large files
  12. (usually > 10-50 MB). Larger files and/or more free RAM means
  13. that the utility will be able to more effectively compress
  14. your files (ie: faster / smaller size), especially if the
  15. filesize(s) exceed 100 MB. You can either choose to optimise
  16. for speed (fast compression / decompression) or size,
  17. but not both.
  18. https://github.com/ckolivas/lrzip
  19. comment "lrzip needs a toolchain w/ wchar, threads, C++"
  20. depends on BR2_USE_MMU
  21. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
  22. !BR2_INSTALL_LIBSTDCPP