view src/itstool.mk @ 4353:ae1280afbc8c

wxwidgets: add fixes for stdc++11 issues in later gcc versions * src/wxwidgets.mk: disable use of stl, enable unicode * src/wxwidgets-1-c++11-related-fixes.patch: new file from mxe.cc * dist-files.mk: add ref to wxwidgets-1-c++11-related-fixes.patch
author John D
date Thu, 23 Feb 2017 14:08:10 -0500
parents 13be64f9f16d
children
line wrap: on
line source

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

PKG             := itstool
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 1.2.0
$(PKG)_CHECKSUM := dc6b766c2acec32d3c5d016b0a33e9268d274f63
$(PKG)_SUBDIR   := itstool-$($(PKG)_VERSION)
$(PKG)_FILE     := itstool-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL      := http://files.itstool.org/itstool/$(PKG)-$($(PKG)_VERSION).tar.bz2
$(PKG)_DEPS     :=

define $(PKG)_UPDATE
    $(WGET) -q -O- 'http://itstool.org/download/' | \
    $(SED) -n 's,.*itstool-\([0-9][^"]*\)\.tar.*,\1,p' | \
    head -1
endef

ifeq ($(MXE_SYSTEM),msvc)
    $(PKG)_PREFIX := $(HOST_PREFIX_NATIVE)
else
    $(PKG)_PREFIX := $(HOST_PREFIX)
endif

define $(PKG)_BUILD
    cd '$(1)' && ./configure \
        $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
        --prefix='$($(PKG)_PREFIX)'
    $(MAKE) -C '$(1)' -j '$(JOBS)' install
endef