2015-10-15 22:12:13 +00:00
|
|
|
#
|
2015-07-24 22:26:44 +00:00
|
|
|
# Copyright (C) 2011-2015 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=mbedtls
|
2018-07-27 10:16:29 +00:00
|
|
|
PKG_VERSION:=2.12.0
|
2017-03-13 19:04:32 +00:00
|
|
|
PKG_RELEASE:=1
|
2015-07-24 22:26:44 +00:00
|
|
|
PKG_USE_MIPS16:=0
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-gpl.tgz
|
|
|
|
PKG_SOURCE_URL:=https://tls.mbed.org/download/
|
2018-07-27 10:16:29 +00:00
|
|
|
PKG_HASH:=8661d19a896a5a7a232ed01ac7f05cf0ec3514798f18076c2c9ef965fbeb5a28
|
2015-07-24 22:26:44 +00:00
|
|
|
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
PKG_LICENSE:=GPL-2.0+
|
2017-09-28 02:55:46 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:arm:mbed_tls
|
2015-07-24 22:26:44 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
|
|
|
define Package/mbedtls/Default
|
|
|
|
TITLE:=Embedded SSL
|
|
|
|
URL:=https://tls.mbed.org
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/mbedtls/Default/description
|
|
|
|
The aim of the mbedtls project is to provide a quality, open-source
|
|
|
|
cryptographic library written in C and targeted at embedded systems.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libmbedtls
|
|
|
|
$(call Package/mbedtls/Default)
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2018-03-12 19:19:49 +00:00
|
|
|
SUBMENU:=SSL
|
2015-07-24 22:26:44 +00:00
|
|
|
TITLE+= (library)
|
|
|
|
ABI_VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
|
|
|
|
endef
|
|
|
|
|
2018-03-12 19:19:49 +00:00
|
|
|
define Package/mbedtls-util
|
|
|
|
$(call Package/mbedtls/Default)
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE+= (utilities)
|
|
|
|
DEPENDS:=+libmbedtls
|
|
|
|
endef
|
|
|
|
|
2015-07-24 22:26:44 +00:00
|
|
|
define Package/libmbedtls/description
|
|
|
|
$(call Package/mbedtls/Default/description)
|
|
|
|
This package contains the mbedtls library.
|
|
|
|
endef
|
|
|
|
|
2018-03-12 19:19:49 +00:00
|
|
|
define Package/mbedtls-util/description
|
|
|
|
$(call Package/mbedtls/Default/description)
|
|
|
|
This package contains mbedtls helper programs for private key and
|
|
|
|
CSR generation (gen_key, cert_req)
|
|
|
|
endef
|
|
|
|
|
2015-07-24 22:26:44 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2017-02-21 13:33:14 +00:00
|
|
|
TARGET_CFLAGS += -ffunction-sections -fdata-sections
|
2018-06-10 22:22:36 +00:00
|
|
|
TARGET_CFLAGS := $(filter-out -O%,$(TARGET_CFLAGS))
|
2017-02-21 13:33:14 +00:00
|
|
|
|
2015-07-24 22:26:44 +00:00
|
|
|
CMAKE_OPTIONS += \
|
|
|
|
-DUSE_SHARED_MBEDTLS_LIBRARY:Bool=ON \
|
|
|
|
-DENABLE_TESTING:Bool=OFF \
|
2018-03-12 19:19:49 +00:00
|
|
|
-DENABLE_PROGRAMS:Bool=ON
|
2015-07-24 22:26:44 +00:00
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/mbedtls $(1)/usr/include/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so* $(1)/usr/lib/
|
2017-01-01 18:10:38 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.a $(1)/usr/lib/
|
2015-07-24 22:26:44 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libmbedtls/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2018-03-12 19:19:49 +00:00
|
|
|
define Package/mbedtls-util/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gen_key $(1)/usr/bin/
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/cert_req $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
2015-07-24 22:26:44 +00:00
|
|
|
$(eval $(call BuildPackage,libmbedtls))
|
2018-03-12 19:19:49 +00:00
|
|
|
$(eval $(call BuildPackage,mbedtls-util))
|