gdb: Update from 7.12.1 to 8.0
[termux-packages] / packages / imagemagick / build.sh
CommitLineData
2599f92e 1TERMUX_PKG_HOMEPAGE=https://www.imagemagick.org/
59f0d218 2TERMUX_PKG_DESCRIPTION="Suite to create, edit, compose, or convert images in a variety of formats"
1af04c0e 3TERMUX_PKG_VERSION="7.0.6-0"
e45652b2 4TERMUX_PKG_SRCURL=https://dl.bintray.com/termux/upstream/ImageMagick-${TERMUX_PKG_VERSION}.tar.xz
1af04c0e 5TERMUX_PKG_SHA256=31587e2aa4d46301461329fd88d4ed6fccb0bd4ae786d629a153df72dbac89ee
b6c7cb34 6TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
bb04b668
FF
7--disable-largefile
8--without-x
9--without-gvc
10--without-ltdl
11--with-magick-plus-plus=no
12--with-bzlib=no
13--with-xml=yes
14--with-lzma
15ac_cv_func_ftime=no
16ac_cv_header_complex_h=no"
59f0d218
FF
17TERMUX_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"
18TERMUX_PKG_DEPENDS="fftw, pango, glib, libbz2, libjpeg-turbo, liblzma, libpng, libtiff, libxml2, openjpeg, littlecms"
1af04c0e
FF
19
20termux_step_pre_configure() {
21 if [ $TERMUX_ARCH = "i686" ]; then
22 # Avoid "libMagickCore-7.Q16HDRI.so: error: undefined reference to '__atomic_load'":
23 LDFLAGS+=" -latomic"
24 fi
25}