Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
name: lz4
|
|
version: 1.9.3
|
|
summary: Extremely Fast Compression algorithm
|
|
description: >
|
|
LZ4 is lossless compression algorithm, providing compression
|
|
speed > 500 MB/s per core, scalable with multi-cores CPU. It features an
|
|
extremely fast decoder, with speed in multiple GB/s per core, typically
|
|
reaching RAM speed limits on multi-core systems.
|
|
.
|
|
Speed can be tuned dynamically, selecting an "acceleration" factor which
|
|
trades compression ratio for faster speed. On the other end, a high
|
|
compression derivative, LZ4_HC, is also provided, trading CPU time for
|
|
improved compression ratio. All versions feature the same decompression
|
|
speed.
|
|
.
|
|
LZ4 is also compatible with dictionary compression, and can ingest any
|
|
input file as dictionary, including those created by Zstandard Dictionary
|
|
Builder. (note: only the final 64KB are used).
|
|
.
|
|
LZ4 library is provided as open-source software using BSD 2-Clause license.
|
|
confinement: strict
|
|
grade: stable
|
|
|
|
apps:
|
|
lz4:
|
|
command: usr/local/bin/lz4
|
|
plugs: [home]
|
|
parts:
|
|
lz4:
|
|
source: ../
|
|
plugin: make
|