install_docs_deps.sh 402 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. set -x # echo on
  3. set -e # exit on error
  4. sudo apt-get -qq update
  5. sudo apt-get install doxygen liblua5.3-dev
  6. pip3 install 'sphinx==2.0.1'
  7. pip3 install sphinx_rtd_theme
  8. pip3 install sympy
  9. git clone https://github.com/vovkos/doxyrest_b
  10. cd doxyrest_b
  11. git reset --hard ad45c064d1199e71b8cae5aa66d4251c4228b958
  12. git submodule update --init
  13. mkdir build
  14. cd build
  15. cmake ..
  16. cmake --build .
  17. cd ../..