1
0
forked from Proxmox/ProxmoxVE

convertx: install missing converter dependencies

This commit is contained in:
MickLesk
2026-08-12 09:23:48 +02:00
parent 4bf3fda9c5
commit f60eb18b1f
2 changed files with 29 additions and 1 deletions
+12 -1
View File
@@ -34,7 +34,18 @@ function update_script() {
systemctl stop convertx
msg_info "Stopped Service"
ensure_dependencies libreoffice-writer
ensure_dependencies libreoffice-writer dasel graphicsmagick libemail-outlook-message-perl libheif-examples libjxl-tools pipx python3-pip resvg
if ! command -v markitdown &>/dev/null; then
msg_info "Installing markitdown"
export PIPX_BIN_DIR=/usr/local/bin
$STD pipx install "markitdown[all]"
msg_ok "Installed markitdown"
fi
if ! command -v vtracer &>/dev/null; then
fetch_and_deploy_gh_release "vtracer" "visioncortex/vtracer" "prebuild" "0.6.4" "/usr/local/bin" "vtracer-$(arch_resolve "x86_64" "aarch64")-unknown-linux-musl.tar.gz"
fi
create_backup /opt/convertx/data
+17
View File
@@ -20,19 +20,27 @@ msg_info "Installing Dependencies"
$STD apt install -y \
assimp-utils \
calibre \
dasel \
dcraw \
dvisvgm \
ffmpeg \
graphicsmagick \
inkscape \
libemail-outlook-message-perl \
libheif-examples \
libjxl-tools \
libreoffice-writer \
libva2 \
libvips-tools \
lmodern \
mupdf-tools \
pandoc \
pipx \
poppler-utils \
potrace \
python3-numpy \
python3-pip \
resvg \
texlive \
texlive-fonts-recommended \
texlive-latex-extra \
@@ -40,6 +48,15 @@ $STD apt install -y \
texlive-xetex
msg_ok "Installed Dependencies"
msg_info "Installing markitdown"
export PIPX_BIN_DIR=/usr/local/bin
$STD pipx install "markitdown[all]"
msg_ok "Installed markitdown"
# Pinned to match ConvertX's own Dockerfile - vtracer's "latest" release is now
# for an unrelated desktop app and may drop these CLI binaries.
fetch_and_deploy_gh_release "vtracer" "visioncortex/vtracer" "prebuild" "0.6.4" "/usr/local/bin" "vtracer-$(arch_resolve "x86_64" "aarch64")-unknown-linux-musl.tar.gz"
NODE_VERSION="22" NODE_MODULE="bun" setup_nodejs
fetch_and_deploy_gh_release "ConvertX" "C4illin/ConvertX" "tarball" "latest" "/opt/convertx"