view src/build-scons.mk @ 3610:566fd51378f2

Use system python in native mingw * Makefile.in: if native mingw build, add python requirement and dont build build-python. * src/build-scons.mk: in native mingw, do not have dependancy on build-python.
author John Donoghue
date Mon, 09 Jun 2014 08:00:17 -0400
parents 7ec984651a4f
children 57e25cd3e76b
line wrap: on
line source

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

PKG             := build-scons
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 2.3.1
$(PKG)_CHECKSUM := 775e715e49fe5fd8e1d29551a296fdc9267509e7
$(PKG)_SUBDIR   := scons-$($(PKG)_VERSION)
$(PKG)_FILE     := scons-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := http://prdownloads.sourceforge.net/scons/$($(PKG)_FILE)
ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
    $(PKG)_DEPS     := 
else
    $(PKG)_DEPS     := build-python
endif

define $(PKG)_UPDATE
    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
    echo $($(PKG)_VERSION)
endef

define $(PKG)_BUILD
    cd '$(1)' && python setup.py install
endef