diff options
author | Tony Theodore <tonyt@logyst.com> | 2018-08-18 06:02:17 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2018-08-31 02:21:14 (GMT) |
commit | 822c7e4099ac3e160bcc6cd3a8d788a57b257e01 (patch) | |
tree | b3c23323b9b678e0c7efc182ade73def59ea21d2 /src | |
parent | 6f3bd170de176418d08d9f037d4543f51d2e498e (diff) | |
download | mxe-822c7e4099ac3e160bcc6cd3a8d788a57b257e01.zip mxe-822c7e4099ac3e160bcc6cd3a8d788a57b257e01.tar.gz mxe-822c7e4099ac3e160bcc6cd3a8d788a57b257e01.tar.bz2 |
add standalone scons-local pkg and remove scons from reqs
Diffstat (limited to 'src')
-rw-r--r-- | src/scons-local.mk | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/scons-local.mk b/src/scons-local.mk new file mode 100644 index 0000000..7870545 --- /dev/null +++ b/src/scons-local.mk @@ -0,0 +1,19 @@ +# 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.0.1 +$(PKG)_CHECKSUM := 4d6ceb7b5a628c0ffd9e7b5b0d176a4949cd70dd70ddd0cc0d18e19d71258695 +$(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 |