Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade xpdfreader from 4.04 to 4.05 #467

Merged
merged 1 commit into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ RUN set -ex \

# Install pdftotext
RUN set -ex \
&& wget --no-check-certificate https://dl.xpdfreader.com/xpdf-tools-linux-4.04.tar.gz \
&& tar -xvf xpdf-tools-linux-4.04.tar.gz \
&& cp xpdf-tools-linux-4.04/bin64/pdftotext /usr/local/bin/pdftotext-4
&& wget --no-check-certificate https://dl.xpdfreader.com/xpdf-tools-linux-4.05.tar.gz \
&& tar -xvf xpdf-tools-linux-4.05.tar.gz \
&& cp xpdf-tools-linux-4.05/bin64/pdftotext /usr/local/bin/pdftotext-4
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ RUN set -ex \

# install xpdfreader pdftotext, which supports multiline description parsing
RUN set -ex \
&& curl -k https://dl.xpdfreader.com/xpdf-4.04.tar.gz | tar zxf - \
&& chmod -R 755 ./xpdf-4.04 \
&& cd ./xpdf-4.04/ \
&& curl -k https://dl.xpdfreader.com/xpdf-4.05.tar.gz | tar zxf - \
&& chmod -R 755 ./xpdf-4.05 \
&& cd ./xpdf-4.05/ \
&& mkdir build \
&& cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_DISABLE_FIND_PACKAGE_Qt4=1 -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Widgets=1 \
&& make \
Expand Down
Loading