2 # Copyright (C) 2006-2013 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip
15 PKG_SOURCE_URL:=http://www.yassl.com/
16 PKG_MD5SUM:=7465d4815af90eff01095fa1b031ce09
22 include $(INCLUDE_DIR)/package.mk
24 define Package/libcyassl
29 URL:=http://www.yassl.com/
32 define Package/libcyassl/description
33 CyaSSL is an SSL library optimized for small footprint, both on disk and for
37 TARGET_CFLAGS += $(FPIC)
41 --enable-singlethreaded \
44 define Build/InstallDev
45 $(INSTALL_DIR) $(1)/usr/include
46 $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
48 $(INSTALL_DIR) $(1)/usr/lib
49 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcyassl.{so*,la} $(1)/usr/lib/
52 define Package/libcyassl/install
53 $(INSTALL_DIR) $(1)/usr/lib
54 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcyassl.so* $(1)/usr/lib/
57 $(eval $(call BuildPackage,libcyassl))