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