neomutt: Link against libandroid-support

Fixes https://github.com/termux/termux-packages/issues/13890.
This commit is contained in:
Tee KOBAYASHI 2022-12-14 01:00:59 +09:00 committed by xtkoba
parent 78a624ab54
commit cfb1002c15
1 changed files with 3 additions and 2 deletions

View File

@ -3,11 +3,12 @@ TERMUX_PKG_DESCRIPTION="A version of mutt with added features"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="20220429"
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://github.com/neomutt/neomutt/archive/${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=45496542897ba8de6bc7cce3f5951d9033ed1c49e5d6f1353adaeefe795d9043
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_UPDATE_VERSION_REGEXP="\d{8}"
TERMUX_PKG_DEPENDS="gdbm, krb5, libiconv, libsasl, ncurses, notmuch, openssl, zlib, zstd"
TERMUX_PKG_DEPENDS="gdbm, krb5, libandroid-support, libiconv, libsasl, ncurses, notmuch, openssl, zlib, zstd"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_CONFFILES="etc/neomuttrc"
@ -15,5 +16,5 @@ termux_step_configure() {
./configure --host=$TERMUX_HOST_PLATFORM \
--prefix=$TERMUX_PREFIX --with-mailpath=$TERMUX_PREFIX/var/mail \
--notmuch \
--disable-gpgme --disable-idn --zstd --sasl --ssl --gdbm --gss
--disable-gpgme --disable-idn --zlib --zstd --sasl --ssl --gdbm --gss
}