From ead2e5d2f372f6c8830cb6649705ddcf4fc5c8c8 Mon Sep 17 00:00:00 2001 From: Christoph Date: Sat, 20 Apr 2024 01:41:20 +0200 Subject: [PATCH] add 'README.install.bullseye' --- README.install.bullseye | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README.install.bullseye diff --git a/README.install.bullseye b/README.install.bullseye new file mode 100644 index 0000000..bc3024a --- /dev/null +++ b/README.install.bullseye @@ -0,0 +1,24 @@ +# - Some settings +# - +os_codename=bullseye +version_wkhtmltox=0.12.6.1-3 + + +# - Download Debian package from: +# - https://github.com/wkhtmltopdf/packaging/releases +# - +mkdir -p /usr/local/src/wkhtmltox +cd /usr/local/src/wkhtmltox + +wget -O /usr/local/src/wkhtmltox/wkhtmltox_${version_wkhtmltox}.${os_codename}_amd64.deb \ + https://github.com/wkhtmltopdf/packaging/releases/download/${version_wkhtmltox}/wkhtmltox_${version_wkhtmltox}.${os_codename}_arm64.deb + + +# - Install dependency package +# - +apt install ca-certificates fontconfig libc6 libfreetype6 libjpeg62-turbo libpng16-16 libssl3 libstdc++6 libx11-6 libxcb1 libxext6 libxrender1 xfonts-75dpi xfonts-base zlib1g + +# - Install wkhtmltopdf wkhtmltox +# - +dpkg -i /usr/local/src/wkhtmltox/wkhtmltox_${version_wkhtmltox}.${os_codename}_amd64.deb +