summaryrefslogtreecommitdiffstats
path: root/contrib/snap/snapcraft.yaml
blob: 2793c0ea403ac14a41b8e730c37466e08ee3fd24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: lz4
version: 1.8.4
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