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>
27 lines
665 B
Makefile
27 lines
665 B
Makefile
################################################################################
|
|
#
|
|
# sslh
|
|
#
|
|
################################################################################
|
|
|
|
SSLH_VERSION = v1.18
|
|
SSLH_SITE = http://www.rutschle.net/tech/sslh
|
|
SSLH_LICENSE = GPL-2.0+
|
|
SSLH_LICENSE_FILES = COPYING
|
|
|
|
SSLH_DEPENDENCIES = libconfig
|
|
|
|
define SSLH_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define SSLH_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
define SSLH_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 755 -D package/sslh/S35sslh $(TARGET_DIR)/etc/init.d/S35sslh
|
|
endef
|
|
|
|
$(eval $(generic-package))
|