vim: Update from 8.0.1180 to 8.0. 1203
[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"
73b164d7
FF
3TERMUX_PKG_VERSION=0.25.1
4TERMUX_PKG_SHA256=b4bf09ec9b7b64180704faa26d66cad5f911a5a00ef812da34cb02c3f8872831
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}