pantry/projects/github.com/google/brotli/package.yml
Max Howell cf6e7089d1
+brotli (#181)
* +brotli

* +c99

---------

Co-authored-by: Jacob Heider <jacob@tea.xyz>
2023-02-06 22:07:04 -05:00

29 lines
603 B
YAML

distributable:
url: https://github.com/google/brotli/archive/v{{version}}.tar.gz
strip-components: 1
versions:
github: google/brotli
build:
dependencies:
cmake.org: '*'
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
working-directory: build.d
script: |
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX={{prefix}}
make --jobs={{ hw.concurrency }}
make install
provides:
bin/brotli
test:
fixture:
Hello, World!
script: |
brotli $FIXTURE $FIXTURE.br
brotli $FIXTURE.br --output=out.txt --decompress
test "$(cat $FIXTURE)" = "$(cat out.txt)"