89fbba72fa
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv3/LGPLv3+ is LGPL-3.0/LGPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv3(\+)?/LGPL-3.0\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
533 B
Makefile
15 lines
533 B
Makefile
################################################################################
|
|
#
|
|
# phidgetwebservice
|
|
#
|
|
################################################################################
|
|
|
|
PHIDGETWEBSERVICE_VERSION = 2.1.8.20140319
|
|
PHIDGETWEBSERVICE_SOURCE = phidgetwebservice_$(PHIDGETWEBSERVICE_VERSION).tar.gz
|
|
PHIDGETWEBSERVICE_SITE = http://www.phidgets.com/downloads/libraries
|
|
PHIDGETWEBSERVICE_DEPENDENCIES = libphidget
|
|
PHIDGETWEBSERVICE_LICENSE = LGPL-3.0
|
|
PHIDGETWEBSERVICE_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(autotools-package))
|