Merge pull request #305 from papandreou/fix/imagemagickUrl

Dockerfile: Update ImageMagick tarball url (they took -5 down and up -6)
This commit is contained in:
Lovell Fuller 2015-11-17 17:24:30 +00:00
commit 8be664b66f

View File

@ -72,7 +72,7 @@ RUN ./configure --prefix=${TARGET} --enable-shared --disable-static --disable-de
RUN rm ${TARGET}/lib/libtiffxx*
RUN mkdir ${DEPS}/magick
RUN curl -Ls http://www.imagemagick.org/download/releases/ImageMagick-6.9.2-5.tar.xz | tar xJC ${DEPS}/magick --strip-components=1
RUN curl -Ls http://www.imagemagick.org/download/releases/ImageMagick-6.9.2-6.tar.xz | tar xJC ${DEPS}/magick --strip-components=1
WORKDIR ${DEPS}/magick
RUN ./configure --prefix=${TARGET} --enable-shared --disable-static --disable-dependency-tracking --without-magick-plus-plus && make install-strip