9f59b378a3
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-3c is BSD-3-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-3c/BSD-3-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
527 B
Makefile
15 lines
527 B
Makefile
################################################################################
|
|
#
|
|
# python-babel
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_BABEL_VERSION = 2.3.4
|
|
PYTHON_BABEL_SOURCE = Babel-$(PYTHON_BABEL_VERSION).tar.gz
|
|
PYTHON_BABEL_SITE = https://pypi.python.org/packages/6e/96/ba2a2462ed25ca0e651fb7b66e7080f5315f91425a07ea5b34d7c870c114
|
|
PYTHON_BABEL_SETUP_TYPE = setuptools
|
|
PYTHON_BABEL_LICENSE = BSD-3-Clause
|
|
PYTHON_BABEL_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|