Mercurial > hg > mxe-octave-anirudha
view src/graphicsmagick.mk @ 3013:bcc26ffe9a0f
use variable for --host and --build configure arguments
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sun, 02 Jun 2013 12:40:32 -0400 |
parents | 100e618349f7 |
children | b6c7244a2f66 |
line wrap: on
line source
# This file is part of MXE. # See index.html for further information. PKG := graphicsmagick $(PKG)_IGNORE := $(PKG)_CHECKSUM := 6428eb4bd19635c833750ac9d56c9b89bef4c975 $(PKG)_SUBDIR := GraphicsMagick-$($(PKG)_VERSION) $(PKG)_FILE := GraphicsMagick-$($(PKG)_VERSION).tar.xz $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE) $(PKG)_DEPS := gcc pthreads libtool zlib bzip2 jpeg jasper lcms1 libpng tiff freetype libxml2 define $(PKG)_UPDATE $(WGET) -q -O- 'http://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/' | \ $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \ head -1 endef define $(PKG)_BUILD # This can be removed once the patch "graphicsmagick-1-fix-xml2-config.patch" is accepted by upstream cd '$(1)' && autoconf cd '$(1)' && ./configure \ $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ $(ENABLE_SHARED_OR_STATIC) \ --prefix='$(HOST_PREFIX)' \ --without-modules \ --with-threads \ --with-magick-plus-plus \ --without-perl \ --with-bzlib \ --without-dps \ --without-fpx \ --without-gslib \ --without-jbig \ --with-jpeg \ --with-jp2 \ --with-lcms \ --with-png \ --with-tiff \ --without-trio \ --with-ttf='$(HOST_PREFIX)' \ --without-wmf \ --with-xml \ --with-zlib \ --without-x \ ac_cv_prog_xml2_config='$(HOST_PREFIX)/bin/xml2-config' \ ac_cv_path_xml2_config='$(HOST_PREFIX)/bin/xml2-config' $(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= endef