mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-04 18:45:52 +00:00
7accdb740e
This commit has been automatically submitted by Github Actions.
26 lines
968 B
Bash
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.4"
|
|
TERMUX_PKG_SRCURL=https://github.com/wolfSSL/wolfssl/archive/refs/tags/v${TERMUX_PKG_VERSION}-stable.tar.gz
|
|
TERMUX_PKG_SHA256=6c70f6fab34e2f963a255c3637c0c6f7250df2d1ef7c34eebca4f8e8d7323399
|
|
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=42
|
|
|
|
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
|
|
}
|