summaryrefslogtreecommitdiffstats
path: root/rules/host-python-scons.make
blob: 8fd42a41faef41275cea05bb5cc55a9c6ca2c28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*-makefile-*-
#
# Copyright (C) 2019 by Denis Osterland <Denis.Osterland@diehl.com>
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_PYTHON_SCONS) += host-python-scons

#
# Paths and names
#
HOST_PYTHON_SCONS_VERSION	:= 3.0.1
HOST_PYTHON_SCONS_MD5		:= b6a292e251b34b82c203b56cfa3968b3
HOST_PYTHON_SCONS		:= python-scons-$(HOST_PYTHON_SCONS_VERSION)
HOST_PYTHON_SCONS_SUFFIX	:= tar.gz
HOST_PYTHON_SCONS_URL		:= $(call ptx/mirror, SF, scons/scons-$(HOST_PYTHON_SCONS_VERSION).$(HOST_PYTHON_SCONS_SUFFIX))
HOST_PYTHON_SCONS_SOURCE	:= $(SRCDIR)/$(HOST_PYTHON_SCONS).$(HOST_PYTHON_SCONS_SUFFIX)
HOST_PYTHON_SCONS_DIR		:= $(HOST_BUILDDIR)/$(HOST_PYTHON_SCONS)
HOST_PYTHON_SCONS_LICENSE	:= MIT
HOST_PYTHON_SCONS_LICENSE_FILES	:= file://LICENSE.txt;md5=46ddf66004e5be5566367cb525a66fc6

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

HOST_PYTHON_SCONS_CONF_TOOL	:= python

# vim: syntax=make