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.
14 lines
469 B
Bash
14 lines
469 B
Bash
TERMUX_PKG_HOMEPAGE=https://taskwarrior.org
|
|
TERMUX_PKG_DESCRIPTION="Utility for managing your TODO list"
|
|
TERMUX_PKG_VERSION=2.5.1
|
|
TERMUX_PKG_REVISION=3
|
|
TERMUX_PKG_SRCURL=https://taskwarrior.org/download/task-${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=d87bcee58106eb8a79b850e9abc153d98b79e00d50eade0d63917154984f2a15
|
|
TERMUX_PKG_DEPENDS="libgnutls, libuuid, libandroid-glob"
|
|
TERMUX_PKG_KEEP_SHARE_DOC=yes
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS+=" -landroid-glob"
|
|
}
|
|
|