view src/tinyxml.mk @ 5495:fb50ae69121c

Add build rule for python3 (bug #58689). * src/build-python3.mk: Add build rule for python3 version 3.8.3. * dist-files.mk: Add new file to list. * index.html: Add new package to list. * src/build-setuptools.mk: Update to version 44.1.1 (last version compatible with python2). Use python2. Set installation prefix. * src/build-mako.mk: Use python2. Set installation prefix. * src/build-markupsafe.mk: Use python2. Set installation prefix. * src/mesa.mk: Windows rule depends on scons. Use python2. * src/nsis.mk: Depend on scons. Use python2.
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 05 Jul 2020 12:21:53 +0200
parents 00517d15f4fc
children a7a61d0a104f
line wrap: on
line source

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

PKG             := tinyxml
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 2.6.2
$(PKG)_CHECKSUM := cba3f50dd657cb1434674a03b21394df9913d764
$(PKG)_SUBDIR   := $(PKG)
$(PKG)_FILE     := $(PKG)_$(subst .,_,$($(PKG)_VERSION)).tar.gz
$(PKG)_URL      := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_DEPS     :=

define $(PKG)_UPDATE
    $(WGET) -q -O- 'http://sourceforge.net/projects/tinyxml/files/tinyxml/' | \
    $(SED) -n 's,.*tr title="\([0-9][^"]*\)".*,\1,p' | \
    head -1
endef

define $(PKG)_BUILD
    cd '$(1)' && $(MXE_CXX) -c -O3 -Wall -Wno-unknown-pragmas -Wno-format -D TIXML_USE_STL '$(1)'/*.cpp
    cd '$(1)' && $(MXE_AR) cr libtinyxml.a *.o
    $(MXE_RANLIB) '$(1)/libtinyxml.a'
    $(INSTALL) -d               '$(HOST_LIBDIR)'
    $(INSTALL) -m644 '$(1)'/*.a '$(HOST_LIBDIR)'
    $(INSTALL) -d               '$(HOST_INCDIR)'
    $(INSTALL) -m644 '$(1)'/*.h '$(HOST_INCDIR)'

    #'$(MXE_CXX)' \
    #    -W -Wall -D TIXML_USE_STL -Werror -ansi -pedantic \
    #    '$(2).cpp' -o '$(HOST_BINDIR)/test-tinyxml.exe' \
    #    -ltinyxml
endef