0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-08-12 06:53:05 +00:00
Files
termux-packages/packages/libwolfssl/build.sh
2025-01-01 12:58:03 +05:30

26 lines
968 B
Bash

TERMUX_PKG_HOMEPAGE=https://www.wolfssl.com/
TERMUX_PKG_DESCRIPTION="A small, fast, portable implementation of TLS/SSL for embedded devices to the cloud"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="5.7.6"
TERMUX_PKG_SRCURL=https://github.com/wolfSSL/wolfssl/archive/refs/tags/v${TERMUX_PKG_VERSION}-stable.tar.gz
TERMUX_PKG_SHA256=52b1e439e30d1ed8162a16308a8525a862183b67aa30373b11166ecbab000d63
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_UPDATE_VERSION_REGEXP="\d+\.\d+\.\d+"
termux_step_pre_configure() {
# Do not forget to bump revision of reverse dependencies and rebuild them
# after SOVERSION is changed.
local _SOVERSION=43
local a
for a in WOLFSSL_LIBRARY_VERSION_FIRST; do
local _${a}=$(sed -En 's/^set\('"${a}"'\s+([0-9]+).*/\1/p' \
CMakeLists.txt)
done
local v=${_WOLFSSL_LIBRARY_VERSION_FIRST}
if [ ! "${v}" ] || [ "${v}" != "${_SOVERSION}" ]; then
termux_error_exit "SOVERSION guard check failed."
fi
}