new build matrix
[m6w6/ext-http] / travis / brotli.sh
1 #!/bin/bash
2
3 if test -n "$with_http_libbrotli_dir" && test "$with_http_libbrotli_dir" != "no"; then
4 git clone https://github.com/google/brotli.git /home/travis/brotli.git
5 cd /home/travis/brotli.git
6 git checkout v1.0.2
7 ./bootstrap
8 ./configure --prefix=/home/travis/brotli
9 make -j2
10 make install
11 fi