aboutsummaryrefslogtreecommitdiffstats
path: root/build-scripts/prebuild
blob: f8d1f61bfef379c2f233891ebf0373ff8ec7b44c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
cd $(dirname $0)/..
set -ex
sudo apt-get update
sudo apt-get -y install \
   autoconf build-essential zlib1g-dev libjpeg-dev \
   python3-pip texlive-latex-extra latexmk inkscape imagemagick
pip3 install sphinx
./configure --enable-doc-maintenance
make -j$(nproc) build_manual
zip -r doc.zip doc/*html doc/*.pdf
build-scripts/download-external-libs