mxe/src/scons-local.mk

23 lines
870 B
Makefile

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := scons-local
$(PKG)_WEBSITE := https://scons.org/
$(PKG)_DESCR := Standalone SCons
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.1.2
$(PKG)_CHECKSUM := 642e90860b746fa18fac08c7a22de6bfa86110ae7c56d7f136f7e5fb0d8f4f44
$(PKG)_SUBDIR := .
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := https://$(SOURCEFORGE_MIRROR)/project/scons/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_TYPE := source-only
$(PKG)_DEPS :=
define $(PKG)_UPDATE
$(call GET_LATEST_VERSION, https://scons.org/pages/download.html,scons-local-)
endef
# unpack sources into build dir and execute directly with python2
# scons does various PATH manipulations that don't play well with ccache
SCONS_LOCAL = \
PATH='$(PREFIX)/bin:$(PATH)' $(PYTHON2) '$(BUILD_DIR).scons/scons.py'