notmuch: Update from 0.26.1 to 0.26.2
[termux-packages] / packages / notmuch / build.sh
CommitLineData
168e25a1
FF
1TERMUX_PKG_HOMEPAGE=https://notmuchmail.org
2TERMUX_PKG_DESCRIPTION="Thread-based email index, search and tagging system"
1a54c9af
FF
3TERMUX_PKG_VERSION=0.26.2
4TERMUX_PKG_SHA256=109c1865db7a035d08707421d13e9b6b82ee8e9f1534db70c28c51bc39370e3b
168e25a1 5TERMUX_PKG_SRCURL=https://notmuchmail.org/releases/notmuch-${TERMUX_PKG_VERSION}.tar.gz
168e25a1
FF
6TERMUX_PKG_BUILD_IN_SRC=yes
7TERMUX_PKG_DEPENDS="glib, libgmime, libtalloc, libxapian"
8
9termux_step_configure () {
ee6a231c
FF
10 # Use python3 so that the python3-sphinx package is
11 # found for man page generation.
12 export PYTHON=python3
13
168e25a1
FF
14 cd $TERMUX_PKG_SRCDIR
15 XAPIAN_CONFIG=$TERMUX_PREFIX/bin/xapian-config ./configure \
16 --prefix=$TERMUX_PREFIX \
17 --without-api-docs \
18 --without-desktop \
19 --without-emacs \
20 --without-ruby
21}