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
547 B
Makefile
16 lines
547 B
Makefile
################################################################################
|
|
#
|
|
# libusbgx
|
|
#
|
|
################################################################################
|
|
|
|
LIBUSBGX_VERSION = 2e3d43ee098ed928d1baa61ce791ce9ff4788c5a
|
|
LIBUSBGX_SITE = $(call github,libusbgx,libusbgx,$(LIBUSBGX_VERSION))
|
|
LIBUSBGX_LICENSE = GPL-2.0+ (examples), LGPL-2.1+ (library)
|
|
LIBUSBGX_LICENSE_FILES = COPYING COPYING.LGPL
|
|
LIBUSBGX_DEPENDENCIES = host-pkgconf libconfig
|
|
LIBUSBGX_AUTORECONF = YES
|
|
LIBUSBGX_INSTALL_STAGING = YES
|
|
|
|
$(eval $(autotools-package))
|