Skip to content

Commit

Permalink
docker/ubuntu-full/Dockerfile: add libqb3 dependency [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jun 19, 2022
1 parent 71884f4 commit c5ffcd7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docker/ubuntu-full/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,18 @@ RUN . /buildscripts/bh-set-envvars.sh \
&& rm -rf FileGDB_API-RHEL7-64gcc83.tar.gz \
) ; fi

# Build libqb3
RUN . /buildscripts/bh-set-envvars.sh \
&& git clone https://github.com/lucianpls/QB3.git \
&& cd QB3/QB3lib \
&& mkdir build \
&& cd build \
&& cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .. \
&& make -j$(nproc) \
&& make -j$(nproc) install \
&& make install DESTDIR="/build_thirdparty" \
&& cd ../../.. \
&& rm -rf QB3

ARG WITH_PDFIUM=yes
RUN if echo "$WITH_PDFIUM" | grep -Eiq "^(y(es)?|1|true)$" ; then ( \
Expand Down

0 comments on commit c5ffcd7

Please sign in to comment.