aboutsummaryrefslogtreecommitdiff
path: root/travis/osx/before_install.sh
blob: 09a7a74fba4a3c91f8434504cb3ea080181b356d (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)