libzip: Add SOVERSION guard

%ci:no-build
This commit is contained in:
Tee KOBAYASHI 2022-12-28 01:04:01 +09:00 committed by xtkoba
parent d4e2cb8f8a
commit 50781e0feb
1 changed files with 12 additions and 0 deletions

View File

@ -14,3 +14,15 @@ TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
-DENABLE_MBEDTLS=NO
-DENABLE_OPENSSL=YES
"
termux_step_post_get_source() {
# Do not forget to bump revision of reverse dependencies and rebuild them
# after SOVERSION is changed.
local _SOVERSION=5
local v=$(sed -En 's/^\s*set_target_properties\(zip\s+.*\s+SOVERSION\s+([0-9]+).*/\1/p' \
lib/CMakeLists.txt)
if [ "${v}" != "${_SOVERSION}" ]; then
termux_error_exit "SOVERSION guard check failed."
fi
}