Skip to content

Commit

Permalink
Fixed libheif building
Browse files Browse the repository at this point in the history
  • Loading branch information
dooman87 committed Apr 23, 2024
1 parent 0e3b91d commit 5d324dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.bookworm
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ RUN apt-get -y update && \
rm -rf aom && \
rm -rf build_aom && \
# Building libheif
git clone -b v${LIB_HEIF_VERSION} --depth 1 https://github.com/strukturag/libheif.git \
cd libheif/ && mkdir build && cd build && cmake --preset=release .. && make && make install && cd ../../ \
git clone -b v${LIB_HEIF_VERSION} --depth 1 https://github.com/strukturag/libheif.git && \
cd libheif/ && mkdir build && cd build && cmake --preset=release .. && make && make install && cd ../../ && \
ldconfig /usr/local/lib && \
rm -rf libheif && \
# Building ImageMagick
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.bullseye
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ RUN apt-get -y update && \
rm -rf aom && \
rm -rf build_aom && \
# Building libheif
git clone -b v${LIB_HEIF_VERSION} --depth 1 https://github.com/strukturag/libheif.git \
cd libheif/ && mkdir build && cd build && cmake --preset=release .. && make && make install && cd ../../ \
git clone -b v${LIB_HEIF_VERSION} --depth 1 https://github.com/strukturag/libheif.git && \
cd libheif/ && mkdir build && cd build && cmake --preset=release .. && make && make install && cd ../../ && \
ldconfig /usr/local/lib && \
rm -rf libheif && \
# Building ImageMagick
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ RUN apt-get -y update && \
rm -rf aom && \
rm -rf build_aom && \
# Building libheif \
git clone -b v${LIB_HEIF_VERSION} --depth 1 https://github.com/strukturag/libheif.git \
cd libheif/ && mkdir build && cd build && cmake --preset=release .. && make && make install && cd ../../ \
git clone -b v${LIB_HEIF_VERSION} --depth 1 https://github.com/strukturag/libheif.git && \
cd libheif/ && mkdir build && cd build && cmake --preset=release .. && make && make install && cd ../../ && \
ldconfig /usr/local/lib && \
rm -rf libheif && \
# Building ImageMagick
Expand Down

0 comments on commit 5d324dd

Please sign in to comment.