mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 21:44:27 -04:00 
			
		
		
		
	ustream-ssl: correct the year in the PKG_VERSION string, as both r45157 and r45441 left the old year 2014 there. For a casual user it may seem that the current code is from April 2014, although a4ca61527236e89eb9efb782fd9bfd04796144e3 is from April 2015. http://nbd.name/gitweb.cgi?p=ustream-ssl.git;a=commit;h=a4ca61527236e89eb9efb782fd9bfd04796144e3 https://dev.openwrt.org/changeset/45441/ https://dev.openwrt.org/changeset/45157/ signed-off-by: Hannu Nyman <hannu.nyman@iki.fi> SVN-Revision: 45623
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include $(TOPDIR)/rules.mk
 | |
| 
 | |
| PKG_NAME:=ustream-ssl
 | |
| PKG_VERSION:=2015-04-14
 | |
| PKG_RELEASE=$(PKG_SOURCE_VERSION)
 | |
| 
 | |
| PKG_SOURCE_PROTO:=git
 | |
| PKG_SOURCE_URL:=git://nbd.name/ustream-ssl.git
 | |
| PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
 | |
| PKG_SOURCE_VERSION:=a4ca61527236e89eb9efb782fd9bfd04796144e3
 | |
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
 | |
| CMAKE_INSTALL:=1
 | |
| 
 | |
| PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)
 | |
| 
 | |
| PKG_LICENSE:=ISC
 | |
| PKG_LICENSE_FILES:=
 | |
| 
 | |
| PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
 | |
| 
 | |
| 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:=$(PKG_VERSION)
 | |
| endef
 | |
| 
 | |
| define Package/libustream-openssl
 | |
|   $(Package/libustream/default)
 | |
|   TITLE += (openssl)
 | |
|   DEPENDS += +PACKAGE_libustream-openssl:libopenssl
 | |
|   VARIANT:=openssl
 | |
| endef
 | |
| 
 | |
| define Package/libustream-cyassl
 | |
|   $(Package/libustream/default)
 | |
|   TITLE += (cyassl)
 | |
|   DEPENDS += +PACKAGE_libustream-cyassl:libcyassl
 | |
|   VARIANT:=cyassl
 | |
| endef
 | |
| 
 | |
| define Package/libustream-polarssl
 | |
|   $(Package/libustream/default)
 | |
|   TITLE += (polarssl)
 | |
|   DEPENDS += +libpolarssl
 | |
|   VARIANT:=polarssl
 | |
|   DEFAULT_VARIANT:=1
 | |
| endef
 | |
| 
 | |
| ifeq ($(BUILD_VARIANT),cyassl)
 | |
|   TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/cyassl -DHAVE_SNI
 | |
|   CMAKE_OPTIONS += -DCYASSL=on
 | |
| endif
 | |
| ifeq ($(BUILD_VARIANT),polarssl)
 | |
|   CMAKE_OPTIONS += -DPOLARSSL=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-cyassl/install = $(Package/libustream/default/install)
 | |
| Package/libustream-polarssl/install = $(Package/libustream/default/install)
 | |
| 
 | |
| $(eval $(call BuildPackage,libustream-polarssl))
 | |
| $(eval $(call BuildPackage,libustream-cyassl))
 | |
| $(eval $(call BuildPackage,libustream-openssl))
 |