* +brotli

* +c99

---------

Co-authored-by: Jacob Heider <jacob@tea.xyz>
This commit is contained in:
Max Howell 2023-02-06 22:07:04 -05:00 committed by GitHub
parent 65666ea1a7
commit cf6e7089d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,28 @@
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)"