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.
19 lines
651 B
Bash
19 lines
651 B
Bash
TERMUX_PKG_HOMEPAGE=https://notmuchmail.org
|
|
TERMUX_PKG_DESCRIPTION="Thread-based email index, search and tagging system"
|
|
TERMUX_PKG_VERSION=0.24.2
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://notmuchmail.org/releases/notmuch-${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=aa76a96684d5c5918d940182b6fe40f7d6745f144476fdda57388479d586cc51
|
|
TERMUX_PKG_BUILD_IN_SRC=yes
|
|
TERMUX_PKG_DEPENDS="glib, libgmime, libtalloc, libxapian"
|
|
|
|
termux_step_configure () {
|
|
cd $TERMUX_PKG_SRCDIR
|
|
XAPIAN_CONFIG=$TERMUX_PREFIX/bin/xapian-config ./configure \
|
|
--prefix=$TERMUX_PREFIX \
|
|
--without-api-docs \
|
|
--without-desktop \
|
|
--without-emacs \
|
|
--without-ruby
|
|
}
|