diff options
author | Corrado Franco <conraid (at) linux (dot) it> | 2023-07-02 21:02:16 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-07-02 21:02:16 +0700 |
commit | 54eef7e1d93986325d491eb1b88f3cdd5a110341 (patch) | |
tree | d0350cd73425ba6ce95badb6d5efa2f80b1ea4e6 | |
parent | 2bf76c5dcd27a63e314c1f849b582e95025aa463 (diff) |
network/neomutt: Remove tokyiocabinet as optional dependency.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/neomutt/README | 3 | ||||
-rw-r--r-- | network/neomutt/neomutt.SlackBuild | 6 |
2 files changed, 4 insertions, 5 deletions
diff --git a/network/neomutt/README b/network/neomutt/README index 210577c6e767..bb806f509806 100644 --- a/network/neomutt/README +++ b/network/neomutt/README @@ -7,7 +7,6 @@ for selecting groups of messages. Optional dependencies: * notmuch - fast mail indexer for maildir -* kyotocabinet - straightforward implementation of DBM * lua53 - Powerful, fast, light-weight, embeddable scripting language NOTE: this won't work if you have multiple versions of lua installed. @@ -15,4 +14,4 @@ This script builds neomutt without optional support for idn2, notmuch, lua and kyotocabinet. You can be enabled with: -# USENOTMUCH=yes USEKYOTO=yes USELUA=yes ./neomutt.SlackBuild +# USENOTMUCH=yes USELUA=yes ./neomutt.SlackBuild diff --git a/network/neomutt/neomutt.SlackBuild b/network/neomutt/neomutt.SlackBuild index 694a73845240..8e1593c6ce32 100644 --- a/network/neomutt/neomutt.SlackBuild +++ b/network/neomutt/neomutt.SlackBuild @@ -29,7 +29,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=neomutt VERSION=${VERSION:-20230517} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -68,7 +68,6 @@ else fi [ ${USELUA:-no} == 'yes' ] && LUA="--lua" || LUA="" -[ ${USEKYOTO:-no} == 'yes' ] && KYOTO="--kyotocabinet" || KYOTO="" [ ${USENOTMUCH:-no} == 'yes' ] && NOTMUCH="--notmuch" || NOTMUCH="" set -eu @@ -107,9 +106,10 @@ CXXFLAGS="$SLKCFLAGS" \ --idn2 \ --disable-idn \ --autocrypt \ + --lmdb \ --host=$ARCH-slackware-linux \ --build=$ARCH-slackware-linux \ - $NOTMUCH $KYOTO $LUA + $NOTMUCH $LUA make make DESTDIR=$PKG install |