You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2009-2018 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=sslh
  9. PKG_VERSION:=v1.19c
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://rutschle.net/tech/sslh/
  13. PKG_HASH:=bb11dfa88b27ae1ec825a1b8156000c3f17f7e8f042311f19b7a249193c47bf3
  14. PKG_LICENSE:=GPL-2.0-or-later
  15. PKG_LICENSE_FILES:=COPYING
  16. include $(INCLUDE_DIR)/package.mk
  17. define Package/sslh
  18. SECTION:=net
  19. CATEGORY:=Network
  20. SUBMENU:=Routing and Redirection
  21. TITLE:=SSL/SSH multiplexer
  22. DEPENDS:=+libconfig +USE_UCLIBC:libpcre +USE_MUSL:libpcre
  23. URL:=https://rutschle.net/tech/sslh/README.html
  24. PKG_MAINTAINER:=Jonathan McCrohan <jmccrohan@gmail.com>
  25. endef
  26. define Package/sslh/conffiles
  27. /etc/config/sslh
  28. /etc/sslh.conf
  29. endef
  30. MAKE_FLAGS += \
  31. $(if $(CONFIG_USE_GLIBC),USELIBPCRE=,USELIBPCRE=1)
  32. define Package/sslh/install
  33. $(INSTALL_DIR) $(1)/usr/sbin
  34. $(INSTALL_BIN) $(PKG_BUILD_DIR)/sslh-fork $(1)/usr/sbin/sslh
  35. $(INSTALL_DIR) $(1)/etc/init.d/
  36. $(INSTALL_BIN) files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
  37. $(INSTALL_DIR) $(1)/etc/config
  38. $(INSTALL_CONF) files/$(PKG_NAME).config $(1)/etc/config/$(PKG_NAME)
  39. $(INSTALL_CONF) $(PKG_BUILD_DIR)/basic.cfg $(1)/etc/sslh.conf
  40. endef
  41. $(eval $(call BuildPackage,sslh))