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>
21 lines
553 B
Makefile
21 lines
553 B
Makefile
################################################################################
|
|
#
|
|
# hans
|
|
#
|
|
################################################################################
|
|
|
|
HANS_VERSION = 0.4.4
|
|
HANS_SITE = http://downloads.sourceforge.net/project/hanstunnel/source
|
|
HANS_LICENSE = GPL-3.0+
|
|
HANS_LICENSE_FILES = LICENSE
|
|
|
|
define HANS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) GCC="$(TARGET_CC)" GPP="$(TARGET_CXX)" -C $(@D)
|
|
endef
|
|
|
|
define HANS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 755 -D $(@D)/hans $(TARGET_DIR)/usr/sbin/hans
|
|
endef
|
|
|
|
$(eval $(generic-package))
|