blob: e409a4c665a972af302f38006022828f9a3829c5 [file] [log] [blame]
diff --git a/tools/Makefile b/tools/Makefile
index dc07de7..ccd60a5 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -37,6 +37,7 @@ tools-$(CONFIG_TARGET_mxs) += elftosb sdimage
tools-$(CONFIG_TARGET_tegra) += cbootimage cbootimage-configs
tools-$(CONFIG_USES_MINOR) += kernel2minor
tools-$(CONFIG_USE_SPARSE) += sparse
+tools-y += openssl
# builddir dependencies
$(curdir)/autoconf/compile := $(curdir)/m4/compile
diff --git a/tools/openssl/Makefile b/tools/openssl/Makefile
new file mode 100644
index 0000000..087b33f
--- /dev/null
+++ b/tools/openssl/Makefile
@@ -0,0 +1,44 @@
+#
+# Copyright (C) 2006-2016 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:=openssl
+PKG_VERSION:=3.2.0
+PKG_RELEASE:=3
+
+PKG_BUILD_PARALLEL:=1
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:= \
+ http://www.openssl.org/source/ \
+ http://ftp.fi.muni.cz/pub/openssl/source/ \
+ ftp://ftp.pca.dfn.de/pub/tools/net/openssl/source/ \
+
+PKG_HASH:=14c826f07c7e433706fb5c69fa9e25dab95684844b4c962a2cf1bf183eb4690e
+
+PKG_LICENSE:=OpenSSL
+PKG_LICENSE_FILES:=LICENSE
+PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
+PKG_CPE_ID:=cpe:/a:openssl:openssl
+
+include $(INCLUDE_DIR)/host-build.mk
+
+define Host/Configure
+ (cd $(HOST_BUILD_DIR); \
+ ./Configure -no-shared)
+endef
+
+define Host/Install
+ $(CP) $(HOST_BUILD_DIR)/apps/openssl $(STAGING_DIR_HOST)/bin/openssl-$(PKG_RELEASE)
+ mkdir -p $(STAGING_DIR_HOST)/lib/openssl-$(PKG_RELEASE)
+ $(CP) $(HOST_BUILD_DIR)/libssl.a $(STAGING_DIR_HOST)/lib/openssl-$(PKG_RELEASE)
+ $(CP) $(HOST_BUILD_DIR)/libcrypto.a $(STAGING_DIR_HOST)/lib/openssl-$(PKG_RELEASE)
+ ln -sf $(HOST_BUILD_DIR)/include $(STAGING_DIR_HOST)/include/openssl-$(PKG_RELEASE)
+endef
+
+$(eval $(call HostBuild))