mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
20 lines
393 B
YAML
20 lines
393 B
YAML
distributable:
|
|
url: https://github.com/lz4/lz4/archive/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: lz4/lz4
|
|
strip: /^LZ4 /
|
|
|
|
provides:
|
|
- bin/lz4
|
|
|
|
build:
|
|
script: make --jobs {{hw.concurrency}} install PREFIX="{{prefix}}"
|
|
|
|
test:
|
|
fixture: testing compression and decompression
|
|
script: |
|
|
cat $FIXTURE | lz4 | lz4 -d > out
|
|
test "$(cat $FIXTURE)" = "$(cat out)"
|