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

set -e

export PATH=$HOME/Library/Python/3.7/bin:$PATH

brew update
brew install ccache
brew install sqlite3
brew install doxygen
#brew install md5sha1sum
brew reinstall python
brew reinstall wget

./travis/before_install_pip.sh

pip3 install --user sphinx sphinx-rtd-theme sphinxcontrib-bibtex breathe
which sphinx-build

(cd docs; make html)