2019-09-08 10:03:16 +02:00
|
|
|
config BR2_PACKAGE_LRZIP
|
|
|
|
bool "lrzip"
|
|
|
|
depends on BR2_USE_MMU # fork()
|
|
|
|
depends on BR2_USE_WCHAR
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2019-12-16 09:59:19 +01:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2019-09-08 10:03:16 +02:00
|
|
|
select BR2_PACKAGE_ZLIB
|
2021-10-26 19:09:29 +02:00
|
|
|
select BR2_PACKAGE_LZ4
|
2019-09-08 10:03:16 +02:00
|
|
|
select BR2_PACKAGE_LZO
|
|
|
|
select BR2_PACKAGE_BZIP2
|
|
|
|
help
|
|
|
|
A compression utility that excels at compressing large files
|
|
|
|
(usually > 10-50 MB). Larger files and/or more free RAM means
|
|
|
|
that the utility will be able to more effectively compress
|
|
|
|
your files (ie: faster / smaller size), especially if the
|
|
|
|
filesize(s) exceed 100 MB. You can either choose to optimise
|
|
|
|
for speed (fast compression / decompression) or size,
|
|
|
|
but not both.
|
|
|
|
|
|
|
|
https://github.com/ckolivas/lrzip
|
|
|
|
|
2019-12-16 09:59:19 +01:00
|
|
|
comment "lrzip needs a toolchain w/ wchar, threads, C++"
|
2019-09-08 10:03:16 +02:00
|
|
|
depends on BR2_USE_MMU
|
2019-12-16 09:59:19 +01:00
|
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
!BR2_INSTALL_LIBSTDCPP
|