gpgme: Update from 1.10.0 to 1.11.1
[termux-packages] / packages / openssl / build.sh
CommitLineData
59f0d218
FF
1TERMUX_PKG_HOMEPAGE=https://www.openssl.org/
2TERMUX_PKG_DESCRIPTION="Library implementing the SSL and TLS protocols as well as general purpose cryptography functions"
31e09911 3TERMUX_PKG_DEPENDS="ca-certificates"
98bc9c28
FF
4TERMUX_PKG_VERSION=1.0.2o
5TERMUX_PKG_SHA256=ec3f5c9714ba0fd45cb4e087301eb1336c317e0d20b575a125050470e8089e4d
e239964b 6TERMUX_PKG_SRCURL=https://www.openssl.org/source/openssl-${TERMUX_PKG_VERSION}.tar.gz
59f0d218
FF
7TERMUX_PKG_RM_AFTER_INSTALL="bin/c_rehash etc/ssl/misc"
8TERMUX_PKG_BUILD_IN_SRC=yes
a38193c6
FF
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.
13TERMUX_PKG_CLANG=no
59f0d218
FF
14
15# Information about compilation and installation of openssl:
16# http://wiki.openssl.org/index.php/Compilation_and_Installation
17
18termux_step_configure () {
19 perl -p -i -e "s@TERMUX_CFLAGS@$CFLAGS@g" Configure
20 rm -Rf $TERMUX_PREFIX/lib/libcrypto.* $TERMUX_PREFIX/lib/libssl.*
2ca2c2e2
FF
21 test $TERMUX_ARCH = "arm" && TERMUX_OPENSSL_PLATFORM="android-armv7"
22 test $TERMUX_ARCH = "aarch64" && TERMUX_OPENSSL_PLATFORM="linux-aarch64"
23 test $TERMUX_ARCH = "i686" && TERMUX_OPENSSL_PLATFORM="android-x86"
24 test $TERMUX_ARCH = "x86_64" && TERMUX_OPENSSL_PLATFORM="linux-x86_64"
25 # If enabling zlib-dynamic we need "zlib-dynamic" instead of "no-comp no-dso":
a1b245c6
FF
26 ./Configure $TERMUX_OPENSSL_PLATFORM \
27 --prefix=$TERMUX_PREFIX \
0f6115d0 28 --openssldir=$TERMUX_PREFIX/etc/tls \
59f0d218 29 shared \
a1b245c6
FF
30 no-comp \
31 no-dso \
32 no-ssl2 \
33 no-hw \
34 no-engines \
a1b245c6 35 no-srp
59f0d218
FF
36}
37
38termux_step_make () {
a1b245c6
FF
39 make depend
40 make -j 1 all
59f0d218
FF
41}
42
43termux_step_make_install () {
a1b245c6 44 # "install_sw" instead of "install" to not install man pages:
59f0d218
FF
45 make -j 1 install_sw MANDIR=$TERMUX_PREFIX/share/man MANSUFFIX=.ssl
46}