[packages] cyassl: get rid of zlib and pthread dependencies
[openwrt/svn-archive/archive.git] / libs / cyassl / Makefile
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
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 DEPENDS:=+zlib
28 TITLE:=CyaSSL library
29 URL:=http://www.yassl.com/
30 endef
31
32 define Package/libcyassl/description
33 CyaSSL is an SSL library optimized for small footprint, both on disk and for
34 memory use.
35 endef
36
37 TARGET_CFLAGS += $(FPIC)
38
39 CONFIGURE_ARGS += \
40 --without-zlib \
41 --enable-singleThreaded
42
43 define Build/InstallDev
44 $(INSTALL_DIR) $(1)/usr/include
45 $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
46
47 $(INSTALL_DIR) $(1)/usr/lib
48 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcyassl.{a,so*,la} $(1)/usr/lib/
49 endef
50
51 define Package/libcyassl/install
52 $(INSTALL_DIR) $(1)/usr/lib
53 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcyassl.so* $(1)/usr/lib/
54 endef
55
56 $(eval $(call BuildPackage,libcyassl))