polarssl: update to version 1.3.4 and add openssl compat patch
[openwrt.git] / package / libs / polarssl / Makefile
1
2 # Copyright (C) 2011-2013 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:=polarssl
11 PKG_VERSION:=1.3.4
12 PKG_RELEASE:=1
13 PKG_USE_MIPS16:=0
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-gpl.tgz
16 PKG_SOURCE_URL:=https://polarssl.org/code/releases
17 PKG_MD5SUM:=30a75c5f171be49f805f3bf64a0af054
18
19 include $(INCLUDE_DIR)/package.mk
20 include $(INCLUDE_DIR)/cmake.mk
21
22 define Package/polarssl/Default
23   SUBMENU:=SSL
24   TITLE:=Embedded SSL
25   URL:=http://polarssl.org/
26 endef
27
28 define Package/polarssl/Default/description
29 The aim of the PolarSSL project is to provide a quality, open-source
30 cryptographic library written in C and targeted at embedded systems.
31 endef
32
33 define Package/libpolarssl
34 $(call Package/polarssl/Default)
35   SECTION:=libs
36   CATEGORY:=Libraries
37   TITLE+= (library)
38   ABI_VERSION:=$(PKG_VERSION)
39 endef
40
41 define Package/libpolarssl/description
42 $(call Package/polarssl/Default/description)
43 This package contains the PolarSSL library.
44 endef
45
46 define Package/polarssl-progs
47 $(call Package/polarssl/Default)
48   SECTION:=utils
49   CATEGORY:=Utilities
50   DEPENDS:=+libpolarssl
51   TITLE+= (programs)
52 endef
53
54 define Package/polarssl-progs/description
55 $(call Package/polarssl/Default/description)
56 This package contains the PolarSSL programs.
57 endef
58
59 PKG_INSTALL:=1
60
61 CMAKE_OPTIONS += \
62         -DCMAKE_BUILD_TYPE:String="Release" \
63         -DUSE_SHARED_POLARSSL_LIBRARY:Bool=ON \
64
65 define Build/InstallDev
66         $(INSTALL_DIR) $(1)/usr/include
67         $(CP) $(PKG_INSTALL_DIR)/usr/include/polarssl $(1)/usr/include/
68         $(INSTALL_DIR) $(1)/usr/lib
69         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpolarssl.so* $(1)/usr/lib/
70 endef
71
72 define Package/libpolarssl/install
73         $(INSTALL_DIR) $(1)/usr/lib
74         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpolarssl.so* $(1)/usr/lib/
75 endef
76
77 define Package/polarssl-progs/install
78         $(INSTALL_DIR) $(1)/usr/bin
79         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
80 endef
81
82 $(eval $(call BuildPackage,libpolarssl))
83 $(eval $(call BuildPackage,polarssl-progs))