mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
The tarball was renamed from SCons-<version>.tar.gz to scons-<version>.tar.gz. Changes 4.7.0 -> 4.8.0: https://scons.org/scons-480-is-available.html Changes 4.8.0 -> 4.8.1: https://scons.org/scons-481-is-available.html This change has been tested by building the two Buildroot packages that use host-scons: benejson and gpsd. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
17 lines
537 B
Makefile
17 lines
537 B
Makefile
################################################################################
|
|
#
|
|
# scons
|
|
#
|
|
################################################################################
|
|
|
|
SCONS_VERSION = 4.8.1
|
|
SCONS_SITE = https://files.pythonhosted.org/packages/b9/76/a2c1293642f9a448f2d012cabf525be69ca5abf4af289bc0935ac1554ee8
|
|
SCONS_LICENSE = MIT
|
|
SCONS_LICENSE_FILES = LICENSE
|
|
SCONS_SETUP_TYPE = setuptools
|
|
|
|
$(eval $(host-python-package))
|
|
|
|
# variables used by other packages
|
|
SCONS = $(HOST_DIR)/bin/python3 $(HOST_DIR)/bin/scons $(if $(QUIET),-s)
|