| 1 | # |
| 2 | # Copyright (C) 2006-2010 OpenWrt.org |
| 3 | # |
| 4 | # This is free software, licensed under the GNU General Public License v2. |
| 5 | # See /LICENSE for more information. |
| 6 | # |
| 7 | |
| 8 | include $(TOPDIR)/rules.mk |
| 9 | |
| 10 | PKG_NAME:=cyassl |
| 11 | PKG_VERSION:=1.4.0 |
| 12 | PKG_RELEASE:=2 |
| 13 | |
| 14 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip |
| 15 | PKG_SOURCE_URL:=http://www.yassl.com/ |
| 16 | PKG_MD5SUM:=037397c7df84b9a12e614bf46135df1c |
| 17 | |
| 18 | PKG_FIXUP:=libtool no-autoreconf |
| 19 | PKG_INSTALL:=1 |
| 20 | |
| 21 | include $(INCLUDE_DIR)/package.mk |
| 22 | |
| 23 | define Package/libcyassl |
| 24 | SECTION:=libs |
| 25 | SUBMENU:=SSL |
| 26 | CATEGORY:=Libraries |
| 27 | TITLE:=CyaSSL library |
| 28 | URL:=http://www.yassl.com/ |
| 29 | endef |
| 30 | |
| 31 | define Package/libcyassl/description |
| 32 | CyaSSL is an SSL library optimized for small footprint, both on disk and for |
| 33 | memory use. |
| 34 | endef |
| 35 | |
| 36 | TARGET_CFLAGS += $(FPIC) |
| 37 | |
| 38 | CONFIGURE_ARGS += \ |
| 39 | --without-zlib \ |
| 40 | --enable-singleThreaded |
| 41 | |
| 42 | define Build/InstallDev |
| 43 | $(INSTALL_DIR) $(1)/usr/include |
| 44 | $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/ |
| 45 | |
| 46 | $(INSTALL_DIR) $(1)/usr/lib |
| 47 | $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcyassl.{a,so*,la} $(1)/usr/lib/ |
| 48 | endef |
| 49 | |
| 50 | define Package/libcyassl/install |
| 51 | $(INSTALL_DIR) $(1)/usr/lib |
| 52 | $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcyassl.so* $(1)/usr/lib/ |
| 53 | endef |
| 54 | |
| 55 | $(eval $(call BuildPackage,libcyassl)) |
| 56 | |