2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://github.com/open-source-parsers/jsoncpp
|
|
|
|
TERMUX_PKG_DESCRIPTION="C++ library for interacting with JSON"
|
2019-01-21 14:53:58 +02:00
|
|
|
TERMUX_PKG_LICENSE="MIT"
|
2020-12-20 15:16:34 +02:00
|
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
2021-11-03 18:16:03 +00:00
|
|
|
TERMUX_PKG_VERSION=1.9.5
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/open-source-parsers/jsoncpp/archive/${TERMUX_PKG_VERSION}.tar.gz
|
2021-11-03 18:16:03 +00:00
|
|
|
TERMUX_PKG_SHA256=f409856e5920c18d0c2fb85276e24ee607d2a09b5e7d5f0a371368903c275da2
|
2021-10-04 13:43:31 +03:00
|
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
2019-06-20 00:00:07 +03:00
|
|
|
TERMUX_PKG_DEPENDS="libc++"
|
2019-07-20 11:42:33 +03:00
|
|
|
TERMUX_PKG_BREAKS="jsoncpp-dev"
|
|
|
|
TERMUX_PKG_REPLACES="jsoncpp-dev"
|
2019-06-20 00:00:07 +03:00
|
|
|
|
2017-08-10 23:55:32 +02:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
|
|
-DBUILD_SHARED_LIBS=ON
|
|
|
|
-DJSONCPP_WITH_TESTS=OFF
|
|
|
|
-DCCACHE_FOUND=OFF
|
|
|
|
"
|
2015-06-13 01:03:31 +02:00
|
|
|
|
2019-02-08 17:37:29 +08:00
|
|
|
termux_step_pre_configure() {
|
2019-08-08 15:25:54 +03:00
|
|
|
# Certain packages are not safe to build on device because their
|
|
|
|
# build.sh script deletes specific files in $TERMUX_PREFIX.
|
2019-08-12 18:28:41 +03:00
|
|
|
if $TERMUX_ON_DEVICE_BUILD; then
|
2019-08-08 15:25:54 +03:00
|
|
|
termux_error_exit "Package '$TERMUX_PKG_NAME' is not safe for on-device builds."
|
|
|
|
fi
|
|
|
|
|
2016-09-26 08:40:05 -04:00
|
|
|
# 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*
|
2015-06-13 01:03:31 +02:00
|
|
|
}
|