nodejs-current: fix hardcoded paths
[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"
965b70ff 3TERMUX_PKG_VERSION=0.25
ee6a231c 4TERMUX_PKG_REVISION=1
965b70ff 5TERMUX_PKG_SHA256=65d28d1f783d02629039f7d15d9a2bada147a7d3809f86fe8d13861b0f6ae60b
168e25a1 6TERMUX_PKG_SRCURL=https://notmuchmail.org/releases/notmuch-${TERMUX_PKG_VERSION}.tar.gz
168e25a1
FF
7TERMUX_PKG_BUILD_IN_SRC=yes
8TERMUX_PKG_DEPENDS="glib, libgmime, libtalloc, libxapian"
9
10termux_step_configure () {
ee6a231c
FF
11 # Use python3 so that the python3-sphinx package is
12 # found for man page generation.
13 export PYTHON=python3
14
168e25a1
FF
15 cd $TERMUX_PKG_SRCDIR
16 XAPIAN_CONFIG=$TERMUX_PREFIX/bin/xapian-config ./configure \
17 --prefix=$TERMUX_PREFIX \
18 --without-api-docs \
19 --without-desktop \
20 --without-emacs \
21 --without-ruby
22}