aboutsummaryrefslogtreecommitdiff
path: root/travis/osx/before_install.sh
blob: 3e9d8d463c0f04c1a250b98f4d941badb96d0848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -e

./travis/before_install.sh

brew update
brew install ccache
brew install sqlite3
brew install doxygen

export PATH=$HOME/Library/Python/2.7/bin:$PATH
pip install --user sphinx sphinx-rtd-theme sphinxcontrib-bibtex breathe
which sphinx-build
(cd docs; make html)