2013-01-13 15:57:05 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ustream-ssl
|
2018-08-06 18:19:20 +00:00
|
|
|
PKG_RELEASE:=1
|
2013-01-13 15:57:05 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2018-01-05 09:46:06 +00:00
|
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/ustream-ssl.git
|
2018-08-06 18:19:20 +00:00
|
|
|
PKG_SOURCE_DATE:=2018-07-30
|
|
|
|
PKG_SOURCE_VERSION:=23a3f2830341acd1db149175baf7315a33bd0edb
|
|
|
|
PKG_MIRROR_HASH:=289bef5dac684015b6a40cfd72cf1c8c297bb77cf2efd54e562b628ba3afd83d
|
2013-01-13 15:57:05 +00:00
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
|
2016-12-21 21:25:41 +00:00
|
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)
|
2013-01-13 15:57:05 +00:00
|
|
|
|
|
|
|
PKG_LICENSE:=ISC
|
|
|
|
PKG_LICENSE_FILES:=
|
|
|
|
|
2016-06-07 06:58:31 +00:00
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
2013-01-13 15:57:05 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
|
|
|
define Package/libustream/default
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=ustream SSL Library
|
|
|
|
DEPENDS:=+libubox
|
2014-03-25 15:06:24 +00:00
|
|
|
ABI_VERSION:=$(PKG_VERSION)
|
2013-01-13 15:57:05 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libustream-openssl
|
|
|
|
$(Package/libustream/default)
|
|
|
|
TITLE += (openssl)
|
2016-07-04 10:59:03 +00:00
|
|
|
DEPENDS += +PACKAGE_libustream-openssl:libopenssl
|
2013-01-13 15:57:05 +00:00
|
|
|
VARIANT:=openssl
|
|
|
|
endef
|
|
|
|
|
2017-08-24 05:56:40 +00:00
|
|
|
define Package/libustream-wolfssl
|
2013-01-13 15:57:05 +00:00
|
|
|
$(Package/libustream/default)
|
2017-08-24 05:56:40 +00:00
|
|
|
TITLE += (wolfssl)
|
|
|
|
DEPENDS += +PACKAGE_libustream-wolfssl:libwolfssl
|
|
|
|
VARIANT:=wolfssl
|
2013-01-13 15:57:05 +00:00
|
|
|
endef
|
|
|
|
|
2016-01-16 00:20:01 +00:00
|
|
|
define Package/libustream-mbedtls
|
|
|
|
$(Package/libustream/default)
|
2016-01-16 09:14:03 +00:00
|
|
|
TITLE += (mbedtls)
|
2016-01-16 00:20:01 +00:00
|
|
|
DEPENDS += +libmbedtls
|
|
|
|
VARIANT:=mbedtls
|
|
|
|
DEFAULT_VARIANT:=1
|
|
|
|
endef
|
|
|
|
|
2017-08-24 05:56:40 +00:00
|
|
|
ifeq ($(BUILD_VARIANT),wolfssl)
|
2015-04-01 15:11:38 +00:00
|
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/cyassl -DHAVE_SNI
|
|
|
|
CMAKE_OPTIONS += -DCYASSL=on
|
2013-01-13 15:57:05 +00:00
|
|
|
endif
|
2016-01-16 00:20:01 +00:00
|
|
|
ifeq ($(BUILD_VARIANT),mbedtls)
|
|
|
|
CMAKE_OPTIONS += -DMBEDTLS=on
|
|
|
|
endif
|
2013-01-13 15:57:05 +00:00
|
|
|
|
|
|
|
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)
|
2017-08-24 05:56:40 +00:00
|
|
|
Package/libustream-wolfssl/install = $(Package/libustream/default/install)
|
2016-01-16 00:20:01 +00:00
|
|
|
Package/libustream-mbedtls/install = $(Package/libustream/default/install)
|
2013-01-13 15:57:05 +00:00
|
|
|
|
2016-01-16 00:20:01 +00:00
|
|
|
$(eval $(call BuildPackage,libustream-mbedtls))
|
2017-08-24 05:56:40 +00:00
|
|
|
$(eval $(call BuildPackage,libustream-wolfssl))
|
2013-01-13 15:57:05 +00:00
|
|
|
$(eval $(call BuildPackage,libustream-openssl))
|