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

GraphicsMagick: Change x265 repository URL. Treat libheif dependencies as soft dependencies. #11492

Merged
merged 11 commits into from
Jan 14, 2024
9 changes: 6 additions & 3 deletions projects/graphicsmagick/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,16 @@ RUN hg clone --time -b default https://foss.heptapod.net/graphicsmagick/graphics
RUN git clone --depth 1 https://gitlab.com/libtiff/libtiff

# h.265 codec implementation needed by libheif
RUN git clone --depth 1 https://github.com/strukturag/libde265
RUN git clone --depth 1 https://github.com/strukturag/libde265 || \
printf "https://github.com/strukturag/libde265 is not available!\n"

# x265 HEVC Encoder needed by libheif
RUN hg clone --branch stable http://hg.videolan.org/x265 x265
RUN git clone --depth 1 https://bitbucket.org/multicoreware/x265_git.git x265 || \
printf "https://bitbucket.org/multicoreware/x265_git.git is not available!\n"

# AV1 Codec Library needed by libheif
RUN git clone --depth 1 --branch master https://aomedia.googlesource.com/aom aom
RUN git clone --depth 1 --branch master https://aomedia.googlesource.com/aom aom || \
printf "https://aomedia.googlesource.com/aom is not available!\n"

# Libheif
RUN git clone --depth 1 https://github.com/strukturag/libheif
Expand Down