Add disabled-packages/pforth
[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"
bb27a0ec 4TERMUX_PKG_VERSION=1.0.2h
5b9a960d 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.*
2ca2c2e2
FF
16 test $TERMUX_ARCH = "arm" && TERMUX_OPENSSL_PLATFORM="android-armv7"
17 test $TERMUX_ARCH = "aarch64" && TERMUX_OPENSSL_PLATFORM="linux-aarch64"
18 test $TERMUX_ARCH = "i686" && TERMUX_OPENSSL_PLATFORM="android-x86"
19 test $TERMUX_ARCH = "x86_64" && TERMUX_OPENSSL_PLATFORM="linux-x86_64"
20 # If enabling zlib-dynamic we need "zlib-dynamic" instead of "no-comp no-dso":
21 ./Configure $TERMUX_OPENSSL_PLATFORM --prefix=$TERMUX_PREFIX \
0f6115d0 22 --openssldir=$TERMUX_PREFIX/etc/tls \
59f0d218
FF
23 shared \
24 no-comp no-dso \
25 no-ssl2 no-hw no-engines no-psk no-srp
26}
27
28termux_step_make () {
29 make depend
30 make -j 1 all
31}
32
33termux_step_make_install () {
34 # "install_sw" instead of "install" to not install man pages
35 make -j 1 install_sw MANDIR=$TERMUX_PREFIX/share/man MANSUFFIX=.ssl
36}