CA certificates setup
[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"
d56c571f 4TERMUX_PKG_VERSION=1.0.2d
31e09911 5TERMUX_PKG_BUILD_REVISION=1
59f0d218
FF
6TERMUX_PKG_SRCURL="http://www.openssl.org/source/openssl-${TERMUX_PKG_VERSION}.tar.gz"
7TERMUX_PKG_RM_AFTER_INSTALL="bin/c_rehash etc/ssl/misc"
8TERMUX_PKG_BUILD_IN_SRC=yes
9
10# Information about compilation and installation of openssl:
11# http://wiki.openssl.org/index.php/Compilation_and_Installation
12
13termux_step_configure () {
14 perl -p -i -e "s@TERMUX_CFLAGS@$CFLAGS@g" Configure
15 rm -Rf $TERMUX_PREFIX/lib/libcrypto.* $TERMUX_PREFIX/lib/libssl.*
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/ssl \
21 shared \
22 no-comp no-dso \
23 no-ssl2 no-hw no-engines no-psk no-srp
24}
25
26termux_step_make () {
27 make depend
28 make -j 1 all
29}
30
31termux_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}