ddbc51b247
Signed-off-by: David Bachelart <david.bachelart@bbright.com> [Thomas: - fix download location - remove <pkg>_SOURCE variable, it was the default value - remove trailing space - keep only sha256 hash.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
662 B
Makefile
27 lines
662 B
Makefile
################################################################################
|
|
#
|
|
# sslh
|
|
#
|
|
################################################################################
|
|
|
|
SSLH_VERSION = v1.18
|
|
SSLH_SITE = http://www.rutschle.net/tech/sslh
|
|
SSLH_LICENSE = GPLv2+
|
|
SSLH_LICENSE_FILES = COPYING
|
|
|
|
SSLH_DEPENDENCIES = libconfig
|
|
|
|
define SSLH_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(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))
|