30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 lines
575 B
Makefile
16 lines
575 B
Makefile
################################################################################
|
|
#
|
|
# python-dialog
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_DIALOG_VERSION = 3.0.1
|
|
PYTHON_DIALOG_SOURCE = python2-pythondialog-$(PYTHON_DIALOG_VERSION).tar.bz2
|
|
PYTHON_DIALOG_SITE = http://downloads.sourceforge.net/project/pythondialog/pythondialog/$(PYTHON_DIALOG_VERSION)
|
|
PYTHON_DIALOG_LICENSE = LGPL-2.1+
|
|
PYTHON_DIALOG_LICENSE_FILES = COPYING
|
|
PYTHON_DIALOG_SETUP_TYPE = distutils
|
|
PYTHON_DIALOG_DEPENDENCIES = dialog
|
|
|
|
$(eval $(python-package))
|