42 lines
1.3 KiB
Bash
42 lines
1.3 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.8.63
|
|
TERMUX_PKG_SRCURL=https://github.com/ImageMagick/ImageMagick/archive/$(echo $TERMUX_PKG_VERSION | sed 's/\(.*\)\./\1-/').tar.gz
|
|
TERMUX_PKG_SHA256=5dda18f70662015d7cc89d6d3699cb14def23ad3d5066a43a50ec222e579884f
|
|
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="
|
|
--disable-largefile
|
|
--without-x
|
|
--without-gvc
|
|
--with-magick-plus-plus=no
|
|
--with-bzlib=no
|
|
--with-xml=yes
|
|
--with-rsvg=yes
|
|
--with-lzma
|
|
--disable-openmp
|
|
ac_cv_func_ftime=no
|
|
"
|
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="
|
|
bin/Magick-config
|
|
bin/MagickCore-config
|
|
bin/MagickWand-config
|
|
bin/Wand-config
|
|
share/ImageMagick-7/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_step_pre_configure() {
|
|
if [ $TERMUX_ARCH = "i686" ]; then
|
|
# Avoid "libMagickCore-7.Q16HDRI.so: error: undefined reference to '__atomic_load'":
|
|
LDFLAGS+=" -latomic"
|
|
fi
|
|
}
|