337aa51f3f
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for GPLv3/GPLv3+ is GPL-3.0/GPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv3\>/GPL-3.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
597 B
Makefile
23 lines
597 B
Makefile
################################################################################
|
|
#
|
|
# udpxy
|
|
#
|
|
#################################################################################
|
|
|
|
UDPXY_VERSION = 1.0.23-9-prod
|
|
UDPXY_SOURCE = udpxy.$(UDPXY_VERSION).tar.gz
|
|
UDPXY_SITE = http://www.udpxy.com/download/1_23
|
|
UDPXY_LICENSE = GPL-3.0+
|
|
UDPXY_LICENSE_FILES = README
|
|
|
|
define UDPXY_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define UDPXY_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR=$(TARGET_DIR) PREFIX=/usr \
|
|
-C $(@D) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|