diff options
author | Andrey Smirnov <andrew.smirnov@gmail.com> | 2017-07-25 09:56:03 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-25 22:10:52 +0200 |
commit | 2e751df23ab68f32fbbde1568f3a565ac24caaff (patch) | |
tree | eaecc78fff9cc1325add55db3a251967101f0c6b /package/zstd/Config.in | |
parent | 9e3026c999dc3b7c3941a3969a72834837daf880 (diff) | |
download | buildroot-2e751df23ab68f32fbbde1568f3a565ac24caaff.tar.gz buildroot-2e751df23ab68f32fbbde1568f3a565ac24caaff.zip |
zstd: new package
Add package to provide Zstandard compression tools
(see https://facebook.github.io/zstd)
Minimal config snippet for utils/test-pkg is as follows:
BR2_PACKAGE_ZSTD=y
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
[Thomas:
- use "config" instead of "menuconfig" in Config.in
- add missing final newline in Config.in
- pass DESTDIR=$(TARGET_DIR) only at install time
- wrap too long lines in the .mk file
- remove useless empty newline at end of .hash file.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/zstd/Config.in')
-rw-r--r-- | package/zstd/Config.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/zstd/Config.in b/package/zstd/Config.in new file mode 100644 index 0000000000..9fa70c65cc --- /dev/null +++ b/package/zstd/Config.in @@ -0,0 +1,12 @@ +config BR2_PACKAGE_ZSTD + bool "zstd" + help + Zstandard, or zstd as short version, is a fast lossless + compression algorithm, targeting real-time compression + scenarios at zlib-level and better compression ratios + + The selection of other packages will enable some features: + xz, lz4 and/or zlib will enable support for corresponding + compression formats + + https://facebook.github.io/zstd |