xref: /third_party/lz4/contrib/snap/snapcraft.yaml (revision 27b27ec6)
1name: lz4
2version: 1.9.4 
3summary: Extremely Fast Compression algorithm 
4description: >
5    LZ4 is lossless compression algorithm, providing compression
6    speed > 500 MB/s per core, scalable with multi-cores CPU. It features an
7    extremely fast decoder, with speed in multiple GB/s per core, typically
8    reaching RAM speed limits on multi-core systems.
9    .
10    Speed can be tuned dynamically, selecting an "acceleration" factor which
11    trades compression ratio for faster speed. On the other end, a high
12    compression derivative, LZ4_HC, is also provided, trading CPU time for
13    improved compression ratio. All versions feature the same decompression
14    speed.
15    .
16    LZ4 is also compatible with dictionary compression, and can ingest any
17    input file as dictionary, including those created by Zstandard Dictionary
18    Builder. (note: only the final 64KB are used).
19    .
20    LZ4 library is provided as open-source software using BSD 2-Clause license.
21confinement: strict
22grade: stable
23
24apps:
25  lz4:
26    command: usr/local/bin/lz4
27    plugs: [home]
28parts:
29  lz4:
30    source: ../
31    plugin: make
32