blob: 43f50f3b84ea9e98084bb40a2e06b76b2997af90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Maintainer: Gonzalo Exequiel Pedone <hipersayan DOT x AT gmail DOT com>
# Contributor: Martchus <martchus@gmx.net>
_android_arch=riscv64
pkgname=android-${_android_arch}-openssl
pkgver=3.4.1
pkgrel=1
arch=('any')
pkgdesc="The Open Source toolkit for Secure Sockets Layer and Transport Layer Security (Android ${_android_arch})"
url='https://www.openssl.org'
license=('Apache-2.0')
groups=('android-openssl')
depends=('android-ndk')
makedepends=('android-environment')
options=(!strip !buildflags staticlibs !emptydirs)
source=("https://www.openssl.org/source/openssl-${pkgver}.tar.gz")
md5sums=('fb7a747ac6793a7ad7118eaba45db379')
build() {
cd "${srcdir}/openssl-${pkgver}"
source android-env ${_android_arch}
build_arch=
case "${_android_arch}" in
aarch64)
build_arch=arm64
;;
armv7a-eabi)
build_arch=arm
;;
riscv64)
build_arch=riscv64
;;
x86)
build_arch=x86
;;
x86-64)
build_arch=x86_64
;;
esac
export PATH="${ANDROID_TOOLCHAIN}/bin:${PATH}"
./Configure \
--prefix="${ANDROID_PREFIX}" \
--libdir="${ANDROID_PREFIX_LIB}" \
--openssldir="${ANDROID_PREFIX}" \
-U__ANDROID_API__ \
-D__ANDROID_API__="${ANDROID_MINIMUM_PLATFORM}" \
no-stdio \
no-ui-console \
threads \
shared \
android-${build_arch}
# get rid of debug printing so the library doesn't depend on stdio (no-stdio and no-ui are not entirely sufficient)
sed -i -e 's/\#define TEST_ENG_OPENSSL_RC4_P_INIT//' crypto/engine/eng_openssl.c
# build only libraries
# note: Setting SHLIB_EXT in accordance with qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp to avoid loading
# system library.
make depend
make CALC_VERSIONS="SHLIB_COMPAT=; SHLIB_SOVER=" SHLIB_VERSION_NUMBER= SHLIB_EXT=.so build_libs
}
package() {
cd "$srcdir/openssl-${pkgver}"
source android-env ${_android_arch}
# install header files, libraries and license
for lib in libcrypto{.a,.so} libssl{.a,.so}; do
install -D -m0644 "${lib}" "${pkgdir}/${ANDROID_PREFIX_LIB}/${lib}"
done
for pc in libcrypto.pc libssl.pc openssl.pc; do
install -D -m0644 "${pc}" "${pkgdir}/${ANDROID_PREFIX_LIB}/pkgconfig/${pc}"
done
mkdir -p "${pkgdir}/${ANDROID_PREFIX_INCLUDE}"
cp -r include/openssl "${pkgdir}/${ANDROID_PREFIX_INCLUDE}"
# strip binaries
find "${pkgdir}" -name 'lib*.so' -type f -exec "${ANDROID_STRIP}" --strip-unneeded {} \;
find "${pkgdir}" -name 'lib*.a' -type f -exec "${ANDROID_STRIP}" -g {} \;
}
|