termux-packages/packages/notmuch/build.sh

22 lines
738 B
Bash
Raw Normal View History

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"
2018-10-14 19:56:36 +02:00
TERMUX_PKG_VERSION=0.28
TERMUX_PKG_SHA256=acca75cec91651ccd2a7e31f7004e2ae14eff4ae38e375b8a88414c464cd0a37
2017-04-07 01:11:41 +02:00
TERMUX_PKG_SRCURL=https://notmuchmail.org/releases/notmuch-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_BUILD_IN_SRC=yes
TERMUX_PKG_DEPENDS="glib, libgmime, libtalloc, libxapian"
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
}