2020-10-16 13:14:10 -04:00
|
|
|
#!/bin/bash
|
2020-10-24 19:31:09 -04:00
|
|
|
cd $(dirname $0)/..
|
2020-10-16 13:14:10 -04:00
|
|
|
set -ex
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install \
|
|
|
|
autoconf build-essential zlib1g-dev libjpeg-dev \
|
2021-12-11 17:16:05 -05:00
|
|
|
python3-pip texlive-latex-extra latexmk inkscape imagemagick
|
2021-12-19 13:12:11 -05:00
|
|
|
pip3 install sphinx sphinx_rtd_theme
|
2020-10-16 13:14:10 -04:00
|
|
|
./configure --enable-doc-maintenance
|
2021-12-18 11:19:20 -05:00
|
|
|
make -j$(nproc) build_manual
|
|
|
|
zip -r doc.zip doc/*html doc/*.pdf
|
2020-10-24 19:31:09 -04:00
|
|
|
build-scripts/download-external-libs
|