be76f4dd20
Libressl is a fork of openssl from OpenSSL in 2014. Its goal is to modernize the OpenSSL codebase, improve security, and apply best practice development processes. Right now, libressl is API compatible with OpenSSL 1.0.1, but does not yet include all new APIs from OpenSSL 1.0.2 and later. Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
614 B
Makefile
21 lines
614 B
Makefile
################################################################################
|
|
#
|
|
# libressl
|
|
#
|
|
################################################################################
|
|
|
|
LIBRESSL_VERSION = 2.5.4
|
|
LIBRESSL_SITE = https://ftp.openbsd.org/pub/OpenBSD/LibreSSL
|
|
LIBRESSL_LICENSE = ISC (new additions), OpenSSL or SSLeay (original OpenSSL code)
|
|
LIBRESSL_LICENSE_FILES = COPYING
|
|
LIBRESSL_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBRESSL_BIN),)
|
|
define LIBRESSL_REMOVE_BIN
|
|
$(RM) -f $(TARGET_DIR)/usr/bin/openssl
|
|
endef
|
|
LIBRESSL_POST_INSTALL_TARGET_HOOKS += LIBRESSL_REMOVE_BIN
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|