mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-16 09:37:08 +00:00
a372a988fd
Also remove linearization from qpdf-manual.pdf. It's a small file, and removing the dependency on the qpdf executable significantly shortens build times.
12 lines
327 B
Bash
Executable File
12 lines
327 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) distfiles.zip
|
|
build-scripts/download-external-libs
|