mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-15 01:10:29 +00:00
57ff06405e
465f8dc wolfssl: adjust to new API in v4.2.0 3b06c65 Update example certificate & key, fix typo 1c38fd8 wolfssl: enable CN validation 33308ee ustream-io-cyassl.c: fix client-mode connections 79d91aa Remove CyaSSL, WolfSSL < 3.10.4 support Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
71 lines
1.8 KiB
Makefile
71 lines
1.8 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ustream-ssl
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/ustream-ssl.git
|
|
PKG_SOURCE_DATE:=2019-11-01
|
|
PKG_SOURCE_VERSION:=465f8dc31d85cdd54369a5650d5daa1d3995dfaa
|
|
PKG_MIRROR_HASH:=abf0c516f9a4b25a672b9d2d5b4f3fa05456ded46704817453b3e6ad928a30ac
|
|
CMAKE_INSTALL:=1
|
|
|
|
PKG_LICENSE:=ISC
|
|
PKG_LICENSE_FILES:=
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/libustream/default
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=ustream SSL Library
|
|
DEPENDS:=+libubox
|
|
ABI_VERSION:=20150806
|
|
endef
|
|
|
|
define Package/libustream-openssl
|
|
$(Package/libustream/default)
|
|
TITLE += (openssl)
|
|
DEPENDS += +PACKAGE_libustream-openssl:libopenssl
|
|
VARIANT:=openssl
|
|
endef
|
|
|
|
define Package/libustream-wolfssl
|
|
$(Package/libustream/default)
|
|
TITLE += (wolfssl)
|
|
DEPENDS += +PACKAGE_libustream-wolfssl:libwolfssl
|
|
VARIANT:=wolfssl
|
|
endef
|
|
|
|
define Package/libustream-mbedtls
|
|
$(Package/libustream/default)
|
|
TITLE += (mbedtls)
|
|
DEPENDS += +libmbedtls
|
|
VARIANT:=mbedtls
|
|
DEFAULT_VARIANT:=1
|
|
endef
|
|
|
|
ifeq ($(BUILD_VARIANT),wolfssl)
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/wolfssl
|
|
CMAKE_OPTIONS += -DWOLFSSL=on
|
|
endif
|
|
ifeq ($(BUILD_VARIANT),mbedtls)
|
|
CMAKE_OPTIONS += -DMBEDTLS=on
|
|
endif
|
|
|
|
define Package/libustream/default/install
|
|
$(INSTALL_DIR) $(1)/lib/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libustream-ssl.so $(1)/lib/
|
|
endef
|
|
|
|
Package/libustream-openssl/install = $(Package/libustream/default/install)
|
|
Package/libustream-wolfssl/install = $(Package/libustream/default/install)
|
|
Package/libustream-mbedtls/install = $(Package/libustream/default/install)
|
|
|
|
$(eval $(call BuildPackage,libustream-mbedtls))
|
|
$(eval $(call BuildPackage,libustream-wolfssl))
|
|
$(eval $(call BuildPackage,libustream-openssl))
|