Update paperless-ngx-install.sh

This commit is contained in:
CanbiZ 2025-04-30 09:28:34 +02:00
parent 021c944c8e
commit 2b47b27bf5

View File

@ -41,26 +41,26 @@ $STD apt-get install -y \
setup_uv setup_uv
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing OCR Dependencies (Patience)" # msg_info "Installing OCR Dependencies (Patience)"
$STD apt-get install -y \ # $STD apt-get install -y \
unpaper \ # unpaper \
icc-profiles-free \ # icc-profiles-free \
qpdf \ # qpdf \
liblept5 \ # liblept5 \
libxml2 \ # libxml2 \
pngquant \ # pngquant \
zlib1g \ # zlib1g \
tesseract-ocr \ # tesseract-ocr \
tesseract-ocr-eng # tesseract-ocr-eng
cd /tmp # cd /tmp
curl -fsSL "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10051/ghostpdl-10.05.1.tar.gz" -o "ghostscript.tar.gz" # curl -fsSL "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10051/ghostpdl-10.05.1.tar.gz" -o "ghostscript.tar.gz"
tar -xzf ghostscript.tar.gz # tar -xzf ghostscript.tar.gz
cd ghostpdl-10.05.1 # cd ghostpdl-10.05.1
$STD ./configure # $STD ./configure
$STD make # $STD make
$STD make install # $STD make install
msg_ok "Installed OCR Dependencies" # msg_ok "Installed OCR Dependencies"
msg_info "Installing JBIG2" msg_info "Installing JBIG2"
$STD git clone https://github.com/ie13/jbig2enc /opt/jbig2enc $STD git clone https://github.com/ie13/jbig2enc /opt/jbig2enc
@ -84,7 +84,7 @@ cd /opt/paperless
$STD uv venv /opt/paperless/.venv $STD uv venv /opt/paperless/.venv
source /opt/paperless/.venv/bin/activate source /opt/paperless/.venv/bin/activate
$STD uv sync --all-extras $STD uv sync --all-extras
mkdir -p consume data media static mkdir -p /opt/paperless/{consume,data,media,static}
sed -i -e 's|#PAPERLESS_REDIS=.*|PAPERLESS_REDIS=redis://localhost:6379|' \ sed -i -e 's|#PAPERLESS_REDIS=.*|PAPERLESS_REDIS=redis://localhost:6379|' \
-e "s|#PAPERLESS_CONSUMPTION_DIR=.*|PAPERLESS_CONSUMPTION_DIR=/opt/paperless/consume|" \ -e "s|#PAPERLESS_CONSUMPTION_DIR=.*|PAPERLESS_CONSUMPTION_DIR=/opt/paperless/consume|" \
-e "s|#PAPERLESS_DATA_DIR=.*|PAPERLESS_DATA_DIR=/opt/paperless/data|" \ -e "s|#PAPERLESS_DATA_DIR=.*|PAPERLESS_DATA_DIR=/opt/paperless/data|" \