mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-03 15:17:29 +00:00
13 lines
361 B
Bash
Executable File
13 lines
361 B
Bash
Executable File
#!/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
|