blob: 964fbc67bc030fd27584cbd63692b2f6f075ef13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
set -e
./travis/before_install.sh
brew update
brew install ccache
brew install sqlite3
brew install doxygen
brew install md5sha1sum
export PATH=$HOME/Library/Python/2.7/bin:$PATH
# breathe=4.12.0 is the last version to work for us with sphinx 1.8.5 / Python 2
pip install --user sphinx sphinx-rtd-theme sphinxcontrib-bibtex breathe==4.12.0
which sphinx-build
(cd docs; make html)
|