af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
714 B
Makefile
21 lines
714 B
Makefile
################################################################################
|
|
#
|
|
# usb_modeswitch_data
|
|
#
|
|
################################################################################
|
|
|
|
USB_MODESWITCH_DATA_VERSION = 20170205
|
|
USB_MODESWITCH_DATA_SOURCE = usb-modeswitch-data-$(USB_MODESWITCH_DATA_VERSION).tar.bz2
|
|
USB_MODESWITCH_DATA_SITE = http://www.draisberghof.de/usb_modeswitch
|
|
USB_MODESWITCH_DATA_DEPENDENCIES = usb_modeswitch
|
|
USB_MODESWITCH_DATA_LICENSE = GPL-2.0+
|
|
USB_MODESWITCH_DATA_LICENSE_FILES = COPYING
|
|
|
|
# Nothing to build, it is a pure data package
|
|
|
|
define USB_MODESWITCH_DATA_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|