openssl: Update from 1.0.2e to 1.0.2f
[termux-packages] / packages / openssl / build.sh
1 TERMUX_PKG_HOMEPAGE=https://www.openssl.org/
2 TERMUX_PKG_DESCRIPTION="Library implementing the SSL and TLS protocols as well as general purpose cryptography functions"
3 TERMUX_PKG_DEPENDS="ca-certificates"
4 TERMUX_PKG_VERSION=1.0.2f
5 TERMUX_PKG_SRCURL="http://www.openssl.org/source/openssl-${TERMUX_PKG_VERSION}.tar.gz"
6 TERMUX_PKG_RM_AFTER_INSTALL="bin/c_rehash etc/ssl/misc"
7 TERMUX_PKG_BUILD_IN_SRC=yes
8
9 # Information about compilation and installation of openssl:
10 # http://wiki.openssl.org/index.php/Compilation_and_Installation
11
12 termux_step_configure () {
13 perl -p -i -e "s@TERMUX_CFLAGS@$CFLAGS@g" Configure
14 rm -Rf $TERMUX_PREFIX/lib/libcrypto.* $TERMUX_PREFIX/lib/libssl.*
15 TERMUX_OPENSSL_PLATFORM_SUFFIX=""
16 test $TERMUX_ARCH = "arm" && TERMUX_OPENSSL_PLATFORM_SUFFIX="-armv7"
17 test $TERMUX_ARCH = "i686" && TERMUX_OPENSSL_PLATFORM_SUFFIX="-x86"
18 # If enabling zlib-dynamic we need "zlib-dynamic" instead of "no-comp no-dso":
19 ./Configure android$TERMUX_OPENSSL_PLATFORM_SUFFIX --prefix=$TERMUX_PREFIX \
20 --openssldir=$TERMUX_PREFIX/etc/tls \
21 shared \
22 no-comp no-dso \
23 no-ssl2 no-hw no-engines no-psk no-srp
24 }
25
26 termux_step_make () {
27 make depend
28 make -j 1 all
29 }
30
31 termux_step_make_install () {
32 # "install_sw" instead of "install" to not install man pages
33 make -j 1 install_sw MANDIR=$TERMUX_PREFIX/share/man MANSUFFIX=.ssl
34 }