Skip to content

Commit

Permalink
Downgrade qpdf to 10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-venturini committed Jan 22, 2024
1 parent 9e45920 commit 36513e7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions scripts/install-essentials
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,12 @@ apt-get install -y libvips42
# Tools for transforming and inspecting PDF files
apt-get install -y \
pdftk \
ghostscript \
qpdf
ghostscript

# Install qpdf 10.x
curl -o "/tmp/libqpdf28_10.1.0-1_${TARGETPLATFORM#*/}.deb" "https://ftp.debian.org/debian/pool/main/q/qpdf/libqpdf28_10.1.0-1_${TARGETPLATFORM#*/}.deb" \
&& dpkg -i "/tmp/libqpdf28_10.1.0-1_${TARGETPLATFORM#*/}.deb" \
&& rm "/tmp/libqpdf28_10.1.0-1_${TARGETPLATFORM#*/}.deb"
curl -o "/tmp/qpdf_10.1.0-1_${TARGETPLATFORM#*/}.deb" "https://ftp.debian.org/debian/pool/main/q/qpdf/qpdf_10.1.0-1_${TARGETPLATFORM#*/}.deb" \
&& dpkg -i "/tmp/qpdf_10.1.0-1_${TARGETPLATFORM#*/}.deb" \
&& rm "/tmp/qpdf_10.1.0-1_${TARGETPLATFORM#*/}.deb"

0 comments on commit 36513e7

Please sign in to comment.