view src/tiff.mk @ 4493:f3de384cf0dd

tiff: disable jbig
author John W. Eaton <jwe@octave.org>
date Fri, 06 Oct 2017 10:02:51 -0400
parents 3cc8c0187b44
children 0deb76a57fae
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := tiff
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 4.0.8
$(PKG)_CHECKSUM := 88717c97480a7976c94d23b6d9ed4ac74715267f
$(PKG)_SUBDIR   := tiff-$($(PKG)_VERSION)
$(PKG)_FILE     := tiff-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := http://download.osgeo.org/libtiff/$($(PKG)_FILE)
$(PKG)_URL_2    := ftp://ftp.remotesensing.org/libtiff/$($(PKG)_FILE)
$(PKG)_DEPS     := zlib jpeg
ifneq ($(MXE_SYSTEM),msvc)
    $(PKG)_DEPS += xz
endif

define $(PKG)_UPDATE
    $(WGET) -q -O- 'http://www.remotesensing.org/libtiff/' | \
    $(SED) -n 's,.*>v\([0-9][^<]*\)<.*,\1,p' | \
    head -1
endef

define $(PKG)_BUILD
    cd '$(1)' && ./configure \
        $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
        $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
        $(ENABLE_SHARED_OR_STATIC) \
        --prefix='$(HOST_PREFIX)' \
        --disable-jbig --without-x && $(CONFIGURE_POST_HOOK)
    $(MAKE) -C '$(1)' -j '$(JOBS)' $(MXE_DISABLE_PROGS) DESTDIR='$(3)'
    $(MAKE) -C '$(1)' -j 1 install $(MXE_DISABLE_PROGS) $(MXE_DISABLE_DOCS) DESTDIR='$(3)'

    rm -f '$(3)$(HOST_LIBDIR)/libtiff.la'
    rm -f '$(3)$(HOST_LIBDIR)/libtiffxx.la'
endef