To build and run tests, simply do:
$ ./configure && make
If you want to install brotli, use one of the more advanced build systems below.
See Bazel
The basic commands to build, test and install brotli are:
$ mkdir out && cd out && ../configure-cmake && make $ make test $ make install
You can use other CMake configuration. For example, to build static libraries and use a custom installation directory:
$ mkdir out-static && \ cd out-static && \ ../configure-cmake --disable-shared-libs --prefix='/my/prefix/dir/' $ make install
See Premake5
To install the Python module from source, run the following:
$ python setup.py install
See the Python readme for more details on testing and development.
Independent decoder implementation by Mark Adler, based entirely on format specification.
JavaScript port of brotli decoder. Could be used directly via npm install brotli