0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-08-13 05:03:05 +00:00
Files
termux-packages/packages/notmuch/build.sh
Termux Github Actions 5575b6262c bump(main/notmuch): 0.38.3
This commit has been automatically submitted by Github Actions.
2024-03-11 00:23:06 +00:00

27 lines
911 B
Bash

TERMUX_PKG_HOMEPAGE=https://notmuchmail.org
TERMUX_PKG_DESCRIPTION="Thread-based email index, search and tagging system"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.38.3"
TERMUX_PKG_SRCURL=https://notmuchmail.org/releases/notmuch-${TERMUX_PKG_VERSION}.tar.xz
TERMUX_PKG_SHA256=9af46cc80da58b4301ca2baefcc25a40d112d0315507e632c0f3f0f08328d054
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="glib, libc++, libgmime, libtalloc, libxapian, zlib"
TERMUX_PKG_BREAKS="notmuch-dev"
TERMUX_PKG_REPLACES="notmuch-dev"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_configure() {
# Use python3 so that the python3-sphinx package is
# found for man page generation.
export PYTHON=python3
cd $TERMUX_PKG_SRCDIR
XAPIAN_CONFIG=$TERMUX_PREFIX/bin/xapian-config ./configure \
--prefix=$TERMUX_PREFIX \
--without-api-docs \
--without-desktop \
--without-emacs \
--without-ruby
}