2013-01-13 15:57:05 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ustream-ssl
|
2016-07-01 13:18:55 +00:00
|
|
|
PKG_VERSION:=2016-07-02
|
2013-01-13 15:57:05 +00:00
|
|
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2016-06-06 19:16:47 +00:00
|
|
|
PKG_SOURCE_URL=$(LEDE_GIT)/project/ustream-ssl.git
|
2013-01-13 15:57:05 +00:00
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
2016-07-01 13:18:55 +00:00
|
|
|
PKG_SOURCE_VERSION:=ec80adaa1b47f28d426fa19c692011ce60b992d6
|
2016-10-04 12:28:54 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
|
|
|
|
PKG_MIRROR_MD5SUM:=701f8728b90d4fc141ca086bbd7802cfae42aaa64ace83debb8c27111b921a34
|
2013-01-13 15:57:05 +00:00
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
define Package/libustream-cyassl
|
|
|
|
$(Package/libustream/default)
|
|
|
|
TITLE += (cyassl)
|
2016-07-04 10:59:03 +00:00
|
|
|
DEPENDS += +PACKAGE_libustream-cyassl:libcyassl
|
2013-01-13 15:57:05 +00:00
|
|
|
VARIANT:=cyassl
|
|
|
|
endef
|
|
|
|
|
2013-07-24 16:59:51 +00:00
|
|
|
define Package/libustream-polarssl
|
|
|
|
$(Package/libustream/default)
|
|
|
|
TITLE += (polarssl)
|
|
|
|
DEPENDS += +libpolarssl
|
|
|
|
VARIANT:=polarssl
|
2014-09-23 10:41:24 +00:00
|
|
|
DEFAULT_VARIANT:=1
|
2013-07-24 16:59:51 +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
|
|
|
|
|
2013-01-13 15:57:05 +00:00
|
|
|
ifeq ($(BUILD_VARIANT),cyassl)
|
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
|
2013-07-24 16:59:51 +00:00
|
|
|
ifeq ($(BUILD_VARIANT),polarssl)
|
|
|
|
CMAKE_OPTIONS += -DPOLARSSL=on
|
|
|
|
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)
|
|
|
|
Package/libustream-cyassl/install = $(Package/libustream/default/install)
|
2013-07-24 16:59:51 +00:00
|
|
|
Package/libustream-polarssl/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
|
|
|
|
2013-07-24 16:59:51 +00:00
|
|
|
$(eval $(call BuildPackage,libustream-polarssl))
|
2016-01-16 00:20:01 +00:00
|
|
|
$(eval $(call BuildPackage,libustream-mbedtls))
|
2013-01-13 15:57:05 +00:00
|
|
|
$(eval $(call BuildPackage,libustream-cyassl))
|
|
|
|
$(eval $(call BuildPackage,libustream-openssl))
|