termux-packages/packages/openssl/build.sh

59 lines
2.1 KiB
Bash
Raw Normal View History

2015-06-13 01:03:31 +02:00
TERMUX_PKG_HOMEPAGE=https://www.openssl.org/
TERMUX_PKG_DESCRIPTION="Library implementing the SSL and TLS protocols as well as general purpose cryptography functions"
2019-01-21 13:53:58 +01:00
TERMUX_PKG_LICENSE="BSD"
TERMUX_PKG_DEPENDS="ca-certificates"
2019-05-29 23:05:06 +02:00
TERMUX_PKG_VERSION=1.1.1c
TERMUX_PKG_REVISION=2
2019-05-29 23:05:06 +02:00
TERMUX_PKG_SHA256=f6fb3079ad15076154eda9413fed42877d668e7069d9b87396d0804fdb3f4c90
TERMUX_PKG_SRCURL=https://www.openssl.org/source/openssl-${TERMUX_PKG_VERSION/\~/-}.tar.gz
TERMUX_PKG_CONFFILES="etc/tls/openssl.cnf"
2015-06-13 01:03:31 +02:00
TERMUX_PKG_RM_AFTER_INSTALL="bin/c_rehash etc/ssl/misc"
TERMUX_PKG_BUILD_IN_SRC=yes
TERMUX_PKG_CONFLICTS="libcurl (<< 7.61.0-1)"
TERMUX_PKG_BREAKS="openssl-tool (<< 1.1.1b-1), openssl-dev"
TERMUX_PKG_REPLACES="openssl-tool (<< 1.1.1b-1), openssl-dev"
2015-06-13 01:03:31 +02:00
termux_step_configure() {
# Certain packages are not safe to build on device because their
# build.sh script deletes specific files in $TERMUX_PREFIX.
if [ -n "$TERMUX_ON_DEVICE_BUILD" ]; then
termux_error_exit "Package '$TERMUX_PKG_NAME' is not safe for on-device builds."
fi
CFLAGS+=" -DNO_SYSLOG"
if [ $TERMUX_ARCH = arm ]; then
CFLAGS+=" -fno-integrated-as"
fi
2015-06-13 01:03:31 +02:00
perl -p -i -e "s@TERMUX_CFLAGS@$CFLAGS@g" Configure
rm -Rf $TERMUX_PREFIX/lib/libcrypto.* $TERMUX_PREFIX/lib/libssl.*
test $TERMUX_ARCH = "arm" && TERMUX_OPENSSL_PLATFORM="android-arm"
test $TERMUX_ARCH = "aarch64" && TERMUX_OPENSSL_PLATFORM="android-arm64"
2016-06-17 22:18:13 +02:00
test $TERMUX_ARCH = "i686" && TERMUX_OPENSSL_PLATFORM="android-x86"
test $TERMUX_ARCH = "x86_64" && TERMUX_OPENSSL_PLATFORM="android-x86_64"
2016-06-17 22:18:13 +02:00
# If enabling zlib-dynamic we need "zlib-dynamic" instead of "no-comp no-dso":
2016-09-22 20:42:43 +02:00
./Configure $TERMUX_OPENSSL_PLATFORM \
--prefix=$TERMUX_PREFIX \
2015-08-12 06:03:43 +02:00
--openssldir=$TERMUX_PREFIX/etc/tls \
2015-06-13 01:03:31 +02:00
shared \
no-ssl \
2016-09-22 20:42:43 +02:00
no-comp \
no-dso \
no-hw \
no-srp \
no-tests
2015-06-13 01:03:31 +02:00
}
termux_step_make() {
2016-09-22 20:42:43 +02:00
make depend
make -j $TERMUX_MAKE_PROCESSES all
2015-06-13 01:03:31 +02:00
}
termux_step_make_install() {
2016-09-22 20:42:43 +02:00
# "install_sw" instead of "install" to not install man pages:
2015-06-13 01:03:31 +02:00
make -j 1 install_sw MANDIR=$TERMUX_PREFIX/share/man MANSUFFIX=.ssl
2019-04-27 22:54:15 +02:00
mkdir -p $TERMUX_PREFIX/etc/tls/
cp apps/openssl.cnf $TERMUX_PREFIX/etc/tls/openssl.cnf
2015-06-13 01:03:31 +02:00
}