2017-05-17 23:22:56 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://www.imagemagick.org/
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_DESCRIPTION="Suite to create, edit, compose, or convert images in a variety of formats"
|
2018-08-26 01:17:46 +02:00
|
|
|
TERMUX_PKG_VERSION=7.0.8.10
|
|
|
|
TERMUX_PKG_SHA256=119f99e7849805741fbf0a7890bae0b0a6530fdab35dd3f39185b2dddba272f8
|
2017-12-05 23:34:28 +01:00
|
|
|
local _download_version=`echo $TERMUX_PKG_VERSION | sed 's/\(.*\)\./\1-/'`
|
|
|
|
TERMUX_PKG_SRCURL=https://github.com/ImageMagick/ImageMagick/archive/${_download_version}.tar.gz
|
2017-01-28 16:39:37 +01:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
2017-01-24 01:52:09 +01:00
|
|
|
--disable-largefile
|
|
|
|
--without-x
|
|
|
|
--without-gvc
|
|
|
|
--with-magick-plus-plus=no
|
|
|
|
--with-bzlib=no
|
|
|
|
--with-xml=yes
|
|
|
|
--with-lzma
|
2018-06-22 00:12:05 +02:00
|
|
|
--disable-openmp
|
2017-01-24 01:52:09 +01:00
|
|
|
ac_cv_func_ftime=no
|
2018-06-13 01:11:08 +02:00
|
|
|
ac_cv_header_complex_h=no
|
|
|
|
"
|
2017-07-29 00:35:36 +02:00
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="
|
|
|
|
bin/Magick-config
|
|
|
|
bin/MagickCore-config
|
|
|
|
bin/MagickWand-config
|
|
|
|
bin/Wand-config
|
2018-06-13 01:11:08 +02:00
|
|
|
share/ImageMagick-7/francais.xml
|
2017-07-29 00:35:36 +02:00
|
|
|
share/man/man1/Magick-config.1
|
|
|
|
share/man/man1/MagickCore-config.1
|
|
|
|
share/man/man1/MagickWand-config.1
|
|
|
|
share/man/man1/Wand-config.1
|
|
|
|
"
|
2018-08-27 12:13:28 +02:00
|
|
|
TERMUX_PKG_DEPENDS="fftw, pango, glib, libbz2, libjpeg-turbo, liblzma, libpng, libtiff, libxml2, openjpeg, littlecms, libwebp"
|
2017-06-19 15:26:27 +02:00
|
|
|
|
|
|
|
termux_step_pre_configure() {
|
|
|
|
if [ $TERMUX_ARCH = "i686" ]; then
|
|
|
|
# Avoid "libMagickCore-7.Q16HDRI.so: error: undefined reference to '__atomic_load'":
|
|
|
|
LDFLAGS+=" -latomic"
|
|
|
|
fi
|
|
|
|
}
|