openssl: Add a disabled v1.1 update
[termux-packages] / disabled-packages / openssl-1.1 / 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.1.0e
5 TERMUX_PKG_SRCURL=https://www.openssl.org/source/openssl-${TERMUX_PKG_VERSION}.tar.gz
6 TERMUX_PKG_SHA256=57be8618979d80c910728cfc99369bf97b2a1abd8f366ab6ebdee8975ad3874c
7 TERMUX_PKG_RM_AFTER_INSTALL="bin/c_rehash etc/ssl/misc"
8 TERMUX_PKG_BUILD_IN_SRC=yes
9 # Avoid assembly errors, see
10 # https://github.com/android-ndk/ndk/issues/144
11 # https://github.com/openssl/openssl/issues/1498
12 # May be fixed in later openssl version.
13 TERMUX_PKG_CLANG=no
14
15 # Information about compilation and installation of openssl:
16 # http://wiki.openssl.org/index.php/Compilation_and_Installation
17
18 termux_step_configure () {
19 #perl -p -i -e "s@TERMUX_CFLAGS@$CFLAGS@g" Configure
20 rm -Rf $TERMUX_PREFIX/lib/libcrypto.* $TERMUX_PREFIX/lib/libssl.*
21
22 # See Configurations/10-main.conf
23 export CROSS_SYSROOT=$TERMUX_STANDALONE_TOOLCHAIN/sysroot
24 #export CROSS_COMPILE=${TERMUX_HOST_PLATFORM}-
25
26 test $TERMUX_ARCH = "arm" && TERMUX_OPENSSL_PLATFORM="android-armeabi"
27 test $TERMUX_ARCH = "aarch64" && TERMUX_OPENSSL_PLATFORM="android64-aarch64"
28 test $TERMUX_ARCH = "i686" && TERMUX_OPENSSL_PLATFORM="android-x86"
29 test $TERMUX_ARCH = "x86_64" && TERMUX_OPENSSL_PLATFORM="android64"
30
31 # If enabling zlib-dynamic we need "zlib-dynamic" instead of "no-comp no-dso":
32 ./Configure $TERMUX_OPENSSL_PLATFORM \
33 --prefix=$TERMUX_PREFIX \
34 --openssldir=$TERMUX_PREFIX/etc/tls \
35 shared \
36 no-comp \
37 no-dso \
38 no-ssl2 \
39 no-hw \
40 no-engine \
41 no-psk \
42 no-srp
43 }
44
45 termux_step_make () {
46 make depend
47 make -j 1 all
48 }
49
50 termux_step_make_install () {
51 # "install_sw" instead of "install" to not install man pages:
52 make -j 1 install_sw MANDIR=$TERMUX_PREFIX/share/man MANSUFFIX=.ssl
53 }