2017-04-07 01:11:41 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://notmuchmail.org
|
|
|
|
TERMUX_PKG_DESCRIPTION="Thread-based email index, search and tagging system"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
2019-11-27 23:14:54 +01:00
|
|
|
TERMUX_PKG_VERSION=0.29.3
|
2019-12-25 21:41:05 +01:00
|
|
|
TERMUX_PKG_REVISION=1
|
2019-06-24 21:45:38 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://notmuchmail.org/releases/notmuch-${TERMUX_PKG_VERSION}.tar.xz
|
2019-12-25 21:41:05 +01:00
|
|
|
TERMUX_PKG_SHA256=d5f704b9a72395e43303de9b1f4d8e14dd27bf3646fdbb374bb3dbb7d150dc35
|
2019-06-19 23:50:00 +02:00
|
|
|
TERMUX_PKG_DEPENDS="glib, libc++, libgmime, libtalloc, libxapian, zlib"
|
2019-07-20 10:42:33 +02:00
|
|
|
TERMUX_PKG_BREAKS="notmuch-dev"
|
|
|
|
TERMUX_PKG_REPLACES="notmuch-dev"
|
2019-08-12 17:28:41 +02:00
|
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
2017-04-07 01:11:41 +02:00
|
|
|
|
2019-02-08 10:37:29 +01:00
|
|
|
termux_step_configure() {
|
2017-07-26 16:13:45 +02:00
|
|
|
# Use python3 so that the python3-sphinx package is
|
|
|
|
# found for man page generation.
|
|
|
|
export PYTHON=python3
|
|
|
|
|
2017-04-07 01:11:41 +02:00
|
|
|
cd $TERMUX_PKG_SRCDIR
|
|
|
|
XAPIAN_CONFIG=$TERMUX_PREFIX/bin/xapian-config ./configure \
|
|
|
|
--prefix=$TERMUX_PREFIX \
|
|
|
|
--without-api-docs \
|
|
|
|
--without-desktop \
|
|
|
|
--without-emacs \
|
|
|
|
--without-ruby
|
|
|
|
}
|