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
525 B
Makefile
15 lines
525 B
Makefile
################################################################################
|
|
#
|
|
# python-click
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_CLICK_VERSION = 6.7
|
|
PYTHON_CLICK_SOURCE = click-$(PYTHON_CLICK_VERSION).tar.gz
|
|
PYTHON_CLICK_SITE = https://pypi.python.org/packages/95/d9/c3336b6b5711c3ab9d1d3a80f1a3e2afeb9d8c02a7166462f6cc96570897
|
|
PYTHON_CLICK_LICENSE = BSD-3-Clause
|
|
PYTHON_CLICK_LICENSE_FILES = LICENSE
|
|
PYTHON_CLICK_SETUP_TYPE = setuptools
|
|
|
|
$(eval $(python-package))
|