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