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>
22 lines
578 B
Makefile
22 lines
578 B
Makefile
################################################################################
|
|
#
|
|
# opkg-utils
|
|
#
|
|
################################################################################
|
|
|
|
OPKG_UTILS_VERSION = 0.3.4
|
|
OPKG_UTILS_SITE = http://git.yoctoproject.org/git/opkg-utils
|
|
OPKG_UTILS_SITE_METHOD = git
|
|
OPKG_UTILS_LICENSE = GPL-2.0+
|
|
OPKG_UTILS_LICENSE_FILES = COPYING
|
|
|
|
define HOST_OPKG_UTILS_BUILD_CMDS
|
|
$(MAKE) -C $(@D) $(HOST_CONFIGURE_OPTS)
|
|
endef
|
|
|
|
define HOST_OPKG_UTILS_INSTALL_CMDS
|
|
$(MAKE) -C $(@D) DESTDIR=$(HOST_DIR) PREFIX=/usr install
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|