Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Description][1]: > Brotli is a generic-purpose lossless compression algorithm that > compresses data using a combination of a modern variant of the LZ77 > algorithm, Huffman coding and 2nd order context modeling, with a > compression ratio comparable to the best currently available > general-purpose compression methods. It is similar in speed with > deflate but offers more dense compression. ``` $ # https://github.com/google/brotli/archive/v0.6.0.tar.gz is correct $ bee init https://github.com/google/brotli/releases/download/v0.6.0/Brotli-0.6.0.tar.gz creating Brotli-0.6.0-0.bee from template '/etc/default/bee/templates/fallback' $ mv Brotli-0.6.0-0.bee brotli.be0 $ git add $_ $ vim brotli.be0 ``` Note, that as described in [issue #539][2] the source code archive is needed. Brotli-0.6.0.tar.gz is for the Python bindings. [1]: https://github.com/google/brotli [2]: https://github.com/google/brotli/issues/539
- Loading branch information