6c29aaa1c7
This will make things as std::to_string() and other C++ features work with a modern and supported C++ library. We package up libc++_shared.so and bump the revision of every C++ using package to make it rebuild against it. Users who have built C++ using libraries or programs will probably need to rebuild them if they are linked against Termux-supplied libraries, as user code was previously linked against gnustl while the system libraries are now using libc++, and it's not a good idea to mix C++ standard libraries in a program.
15 lines
710 B
Bash
15 lines
710 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/open-source-parsers/jsoncpp
|
|
TERMUX_PKG_DESCRIPTION="C++ library for interacting with JSON"
|
|
TERMUX_PKG_VERSION=1.8.0
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://github.com/open-source-parsers/jsoncpp/archive/${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=5deb2462cbf0c0121c9d6c9823ec72fe71417e34242e3509bc7c003d526465bc
|
|
TERMUX_PKG_FOLDERNAME=jsoncpp-${TERMUX_PKG_VERSION}
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="-DBUILD_SHARED_LIBS=ON -DJSONCPP_WITH_TESTS=OFF"
|
|
|
|
termux_step_pre_configure () {
|
|
# 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*
|
|
}
|