52103c6129
* imagemagick: update to 7.0.10.2 * fossil: update to 2.10 Had to disable tests checking for sqlite3 as they try to run cross-compiled tests * automake: update to 1.16.2 * ghostscript: update to 9.52 * cmake: update to 3.17.0 * git: update to 2.26.0 * krb5: update to 1.18 * ldc: update to 1.20.1
33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
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_LICENSE="ImageMagick"
|
|
TERMUX_PKG_VERSION=7.0.10.2
|
|
TERMUX_PKG_SRCURL=https://github.com/ImageMagick/ImageMagick/archive/$(echo $TERMUX_PKG_VERSION | sed 's/\(.*\)\./\1-/').tar.gz
|
|
TERMUX_PKG_SHA256=2fb408a56e06ad80ce5c1a5c3dbc2c34886000c7a0740461569e74b5d7348e86
|
|
TERMUX_PKG_DEPENDS="fftw, pango, glib, libbz2, libjpeg-turbo, liblzma, libpng, libtiff, libxml2, openjpeg, littlecms, libwebp, librsvg"
|
|
TERMUX_PKG_BREAKS="imagemagick-dev"
|
|
TERMUX_PKG_REPLACES="imagemagick-dev"
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--without-x
|
|
--without-gvc
|
|
--with-magick-plus-plus=no
|
|
--with-bzlib=yes
|
|
--with-xml=yes
|
|
--with-rsvg=yes
|
|
--with-lzma
|
|
--disable-openmp
|
|
ac_cv_func_ftime=no
|
|
"
|
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="
|
|
share/ImageMagick-7/francais.xml
|
|
"
|
|
|
|
termux_step_pre_configure() {
|
|
if [ $TERMUX_ARCH = "i686" ]; then
|
|
# Avoid "libMagickCore-7.Q16HDRI.so: error: undefined reference to '__atomic_load'":
|
|
LDFLAGS+=" -latomic"
|
|
fi
|
|
}
|