termux-packages/packages/jsoncpp/build.sh

17 lines
657 B
Bash
Raw Normal View History

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"
2017-10-14 23:32:28 +02:00
TERMUX_PKG_VERSION=1.8.3
TERMUX_PKG_SHA256=3671ba6051e0f30849942cc66d1798fdf0362d089343a83f704c09ee7156604f
2015-06-13 01:03:31 +02:00
TERMUX_PKG_SRCURL=https://github.com/open-source-parsers/jsoncpp/archive/${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
-DBUILD_SHARED_LIBS=ON
-DJSONCPP_WITH_TESTS=OFF
-DCCACHE_FOUND=OFF
"
2015-06-13 01:03:31 +02:00
2017-01-15 13:48:05 +01:00
termux_step_pre_configure () {
2016-09-26 14:40:05 +02: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
}