From 51b31100d95cc97378b44c6282a19795213e7db2 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Thu, 21 Apr 2016 17:57:26 -0400 Subject: [PATCH] libressl: Add as disabled package --- disabled-packages/libressl/build.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 disabled-packages/libressl/build.sh diff --git a/disabled-packages/libressl/build.sh b/disabled-packages/libressl/build.sh new file mode 100644 index 000000000..d2d5c5980 --- /dev/null +++ b/disabled-packages/libressl/build.sh @@ -0,0 +1,11 @@ +TERMUX_PKG_HOMEPAGE=http://www.libressl.org/ +TERMUX_PKG_DESCRIPTION="Library implementing the TLS protocol as well as general purpose cryptography functions" +TERMUX_PKG_DEPENDS="ca-certificates" +TERMUX_PKG_VERSION=2.3.3 +TERMUX_PKG_SRCURL=http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${TERMUX_PKG_VERSION}.tar.gz +TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-openssldir=$TERMUX_PREFIX/etc/tls" +TERMUX_PKG_CONFLICTS="openssl" +# etc/tls/cert.pem is provided by ca-certificates: +TERMUX_PKG_RM_AFTER_INSTALL="etc/tls/cert.pem" + +CPPFLAGS+=" -DNO_SYSLOG"