2013-01-13 23:57:05 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ustream-ssl
|
2016-12-30 22:49:44 +08:00
|
|
|
PKG_RELEASE:=2
|
2013-01-13 23:57:05 +08:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2016-06-07 03:16:47 +08:00
|
|
|
PKG_SOURCE_URL=$(LEDE_GIT)/project/ustream-ssl.git
|
2016-12-22 05:25:41 +08:00
|
|
|
PKG_SOURCE_DATE:=2016-07-02
|
2016-07-01 21:18:55 +08:00
|
|
|
PKG_SOURCE_VERSION:=ec80adaa1b47f28d426fa19c692011ce60b992d6
|
2016-12-22 05:25:41 +08:00
|
|
|
PKG_MIRROR_HASH:=bfbad6b4e8c1e933f0bfaab43cbdd44a536c08128c3a779e6f2395a6a886aab7
|
2013-01-13 23:57:05 +08:00
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
|
2016-12-22 05:25:41 +08:00
|
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)
|
2013-01-13 23:57:05 +08:00
|
|
|
|
|
|
|
PKG_LICENSE:=ISC
|
|
|
|
PKG_LICENSE_FILES:=
|
|
|
|
|
2016-06-07 14:58:31 +08:00
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
2013-01-13 23:57:05 +08: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 23:06:24 +08:00
|
|
|
ABI_VERSION:=$(PKG_VERSION)
|
2013-01-13 23:57:05 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libustream-openssl
|
|
|
|
$(Package/libustream/default)
|
|
|
|
TITLE += (openssl)
|
2016-07-04 18:59:03 +08:00
|
|
|
DEPENDS += +PACKAGE_libustream-openssl:libopenssl
|
2013-01-13 23:57:05 +08:00
|
|
|
VARIANT:=openssl
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libustream-cyassl
|
|
|
|
$(Package/libustream/default)
|
|
|
|
TITLE += (cyassl)
|
2016-07-04 18:59:03 +08:00
|
|
|
DEPENDS += +PACKAGE_libustream-cyassl:libcyassl
|
2013-01-13 23:57:05 +08:00
|
|
|
VARIANT:=cyassl
|
|
|
|
endef
|
|
|
|
|
2013-07-25 00:59:51 +08:00
|
|
|
define Package/libustream-polarssl
|
|
|
|
$(Package/libustream/default)
|
|
|
|
TITLE += (polarssl)
|
|
|
|
DEPENDS += +libpolarssl
|
|
|
|
VARIANT:=polarssl
|
|
|
|
endef
|
|
|
|
|
2016-01-16 08:20:01 +08:00
|
|
|
define Package/libustream-mbedtls
|
|
|
|
$(Package/libustream/default)
|
2016-01-16 17:14:03 +08:00
|
|
|
TITLE += (mbedtls)
|
2016-01-16 08:20:01 +08:00
|
|
|
DEPENDS += +libmbedtls
|
|
|
|
VARIANT:=mbedtls
|
|
|
|
DEFAULT_VARIANT:=1
|
|
|
|
endef
|
|
|
|
|
2013-01-13 23:57:05 +08:00
|
|
|
ifeq ($(BUILD_VARIANT),cyassl)
|
2015-04-01 23:11:38 +08:00
|
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/cyassl -DHAVE_SNI
|
|
|
|
CMAKE_OPTIONS += -DCYASSL=on
|
2013-01-13 23:57:05 +08:00
|
|
|
endif
|
2013-07-25 00:59:51 +08:00
|
|
|
ifeq ($(BUILD_VARIANT),polarssl)
|
|
|
|
CMAKE_OPTIONS += -DPOLARSSL=on
|
|
|
|
endif
|
2016-01-16 08:20:01 +08:00
|
|
|
ifeq ($(BUILD_VARIANT),mbedtls)
|
|
|
|
CMAKE_OPTIONS += -DMBEDTLS=on
|
|
|
|
endif
|
2013-01-13 23:57:05 +08: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-25 00:59:51 +08:00
|
|
|
Package/libustream-polarssl/install = $(Package/libustream/default/install)
|
2016-01-16 08:20:01 +08:00
|
|
|
Package/libustream-mbedtls/install = $(Package/libustream/default/install)
|
2013-01-13 23:57:05 +08:00
|
|
|
|
2013-07-25 00:59:51 +08:00
|
|
|
$(eval $(call BuildPackage,libustream-polarssl))
|
2016-01-16 08:20:01 +08:00
|
|
|
$(eval $(call BuildPackage,libustream-mbedtls))
|
2013-01-13 23:57:05 +08:00
|
|
|
$(eval $(call BuildPackage,libustream-cyassl))
|
|
|
|
$(eval $(call BuildPackage,libustream-openssl))
|