kumquat-buildroot/package/p7zip/Config.in
Fabrice Fontaine ed73210515 package/p7zip: update help text of 7za and 7zr
Update help text of 7za and 7zr options (added in commit
c1723424b8) as suggested by Peter
Korsgaard in
https://patchwork.ozlabs.org/project/buildroot/patch/20211025215520.3712974-1-fontaine.fabrice@gmail.com/

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2021-12-05 16:21:29 +01:00

40 lines
998 B
Plaintext

config BR2_PACKAGE_P7ZIP
bool "p7zip"
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # __sync_*_4 intrisics
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_WCHAR
help
p7zip is a quick port of the command line version of 7-zip
for Unix (see http://www.7-zip.org)
7-Zip is a file archiver with highest compression ratio.
http://sourceforge.net/projects/p7zip
if BR2_PACKAGE_P7ZIP
choice
prompt "p7zip binary"
default BR2_PACKAGE_P7ZIP_7ZR
config BR2_PACKAGE_P7ZIP_7ZA
bool "7za"
help
Full 7za archiver. The program supports 7z, ZIP, CAB, ARJ,
GZIP, BZIP2, TAR, CPIO, RPM and DEB formats
config BR2_PACKAGE_P7ZIP_7ZR
bool "7zr"
help
Lightweight 7zr archiver. The program only handles 7z archives
and cannot handle encrypted archives
endchoice
endif
comment "p7zip needs a toolchain w/ threads, wchar, C++"
depends on BR2_TOOLCHAIN_HAS_SYNC_4
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP