mirror of
https://github.com/termux/termux-packages.git
synced 2025-05-11 20:13:22 +00:00
44 lines
1.5 KiB
Bash
44 lines
1.5 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/open-source-parsers/jsoncpp
|
|
TERMUX_PKG_DESCRIPTION="C++ library for interacting with JSON"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=1.9.6
|
|
TERMUX_PKG_SRCURL=https://github.com/open-source-parsers/jsoncpp/archive/refs/tags/${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=f93b6dd7ce796b13d02c108bc9f79812245a82e577581c4c9aabe57075c90ea2
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="libc++"
|
|
TERMUX_PKG_BREAKS="jsoncpp-dev"
|
|
TERMUX_PKG_REPLACES="jsoncpp-dev"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-DBUILD_SHARED_LIBS=ON
|
|
-DJSONCPP_WITH_TESTS=OFF
|
|
-DCCACHE_FOUND=OFF
|
|
"
|
|
TERMUX_PKG_RM_AFTER_INSTALL="
|
|
lib/objects-*
|
|
"
|
|
|
|
termux_step_post_get_source() {
|
|
# Do not forget to bump revision of reverse dependencies and rebuild them
|
|
# after SOVERSION is changed.
|
|
local _SOVERSION=26
|
|
|
|
local v=$(sed -En 's/^set\(PROJECT_SOVERSION\s+([0-9]+).*/\1/p' \
|
|
CMakeLists.txt)
|
|
if [ "${v}" != "${_SOVERSION}" ]; then
|
|
termux_error_exit "SOVERSION guard check failed."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
# Certain packages are not safe to build on device because their
|
|
# build.sh script deletes specific files in $TERMUX_PREFIX.
|
|
if $TERMUX_ON_DEVICE_BUILD; then
|
|
termux_error_exit "Package '$TERMUX_PKG_NAME' is not safe for on-device builds."
|
|
fi
|
|
|
|
# The installation does not overwrite symlinks such as libjsoncpp.so.1,
|
|
# so if rebuilding these are not detected as modified. Fix that:
|
|
rm -f $TERMUX_PREFIX/lib/libjsoncpp.so*
|
|
}
|