preload-hacks: Some patches to make it work.
[termux-packages] / packages / imagemagick / build.sh
index f43693f..44af2a2 100644 (file)
@@ -1,7 +1,36 @@
-TERMUX_PKG_HOMEPAGE=http://www.imagemagick.org/
+TERMUX_PKG_HOMEPAGE=https://www.imagemagick.org/
 TERMUX_PKG_DESCRIPTION="Suite to create, edit, compose, or convert images in a variety of formats"
-TERMUX_PKG_VERSION="7.0.1-10"
-TERMUX_PKG_SRCURL=http://www.imagemagick.org/download/ImageMagick-${TERMUX_PKG_VERSION}.tar.xz
-TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-largefile --without-x --with-magick-plus-plus=no    --with-bzlib=no --with-xml=yes --with-lzma ac_cv_func_ftime=no ac_cv_header_complex_h=no"
-TERMUX_PKG_RM_AFTER_INSTALL="bin/Magick-config bin/MagickCore-config bin/MagickWand-config bin/Wand-config share/ImageMagick-6/francais.xml share/man/man1/Magick-config.1 share/man/man1/MagickCore-config.1 share/man/man1/MagickWand-config.1 share/man/man1/Wand-config.1"
+TERMUX_PKG_VERSION=7.0.7.27
+TERMUX_PKG_SHA256=723a28f9cbc5c6130f496065fc01c839083e97bf3e4930f940a03c0155046170
+local _download_version=`echo $TERMUX_PKG_VERSION | sed 's/\(.*\)\./\1-/'`
+TERMUX_PKG_SRCURL=https://github.com/ImageMagick/ImageMagick/archive/${_download_version}.tar.gz
+TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
+--disable-largefile
+--without-x
+--without-gvc
+--without-ltdl
+--with-magick-plus-plus=no
+--with-bzlib=no
+--with-xml=yes
+--with-lzma
+ac_cv_func_ftime=no
+ac_cv_header_complex_h=no"
+TERMUX_PKG_RM_AFTER_INSTALL="
+bin/Magick-config
+bin/MagickCore-config
+bin/MagickWand-config
+bin/Wand-config
+share/ImageMagick-6/francais.xml
+share/man/man1/Magick-config.1
+share/man/man1/MagickCore-config.1
+share/man/man1/MagickWand-config.1
+share/man/man1/Wand-config.1
+"
 TERMUX_PKG_DEPENDS="fftw, pango, glib, libbz2, libjpeg-turbo, liblzma, libpng, libtiff, libxml2, openjpeg, littlecms"
+
+termux_step_pre_configure() {
+       if [ $TERMUX_ARCH = "i686" ]; then
+               # Avoid "libMagickCore-7.Q16HDRI.so: error: undefined reference to '__atomic_load'":
+               LDFLAGS+=" -latomic"
+       fi
+}