summaryrefslogtreecommitdiffstats
path: root/network/neomutt
diff options
context:
space:
mode:
author Robby Workman2021-04-20 05:10:38 +0200
committer Robby Workman2021-04-20 05:10:38 +0200
commit29daa8714d47e57ff03e0e6afc964de13355f4b0 (patch)
tree72350ff0f24f659ff7c8ab6a9cc8f1d621a2c77a /network/neomutt
parent32bc574e140820f0445fce7679e70d67b3894596 (diff)
downloadslackbuilds-29daa8714d47e57ff03e0e6afc964de13355f4b0.tar.gz
network/neomutt: Fixed dep info; build with libidn2 by default
Diffstat (limited to 'network/neomutt')
-rw-r--r--network/neomutt/README8
-rw-r--r--network/neomutt/neomutt.SlackBuild5
2 files changed, 6 insertions, 7 deletions
diff --git a/network/neomutt/README b/network/neomutt/README
index 44dbb59cb1..ebad339e32 100644
--- a/network/neomutt/README
+++ b/network/neomutt/README
@@ -8,12 +8,10 @@ Optional dependencies:
* notmuch - fast mail indexer for maildir
* kyotocabinet - straightforward implementation of DBM
-* libidn2 - GNU IDN Library version 2
* lua53 - Powerful, fast, light-weight, embeddable scripting language
NOTE: this won't work if you have multiple versions of lua installed.
-This script builds neomutt without optional support
-for idn2, notmuch, lua and kyotocabinet.
-You can be enabled with:
+This script builds neomutt without optional support for notmuch, lua,
+and kyotocabinet. You can enabled them with:
-# USENOTMUCH=yes USEKYOTO=yes USEIDN2=yes USELUA=yes ./neomutt.SlackBuild
+# USENOTMUCH=yes USEKYOTO=yes USELUA=yes ./neomutt.SlackBuild
diff --git a/network/neomutt/neomutt.SlackBuild b/network/neomutt/neomutt.SlackBuild
index c0fc2c0cf3..608f20f546 100644
--- a/network/neomutt/neomutt.SlackBuild
+++ b/network/neomutt/neomutt.SlackBuild
@@ -60,7 +60,6 @@ fi
[ ${USELUA:-no} == 'yes' ] && LUA="--lua" || LUA=""
[ ${USEKYOTO:-no} == 'yes' ] && KYOTO="--kyotocabinet" || KYOTO=""
[ ${USENOTMUCH:-no} == 'yes' ] && NOTMUCH="--notmuch" || NOTMUCH=""
-[ ${USEIDN2:-no} == 'yes' ] && IDN2="--idn2 --disable-idn" || IDN2=""
set -eu
@@ -95,9 +94,11 @@ CXXFLAGS="$SLKCFLAGS" \
--locales-fix \
--sqlite \
--full-doc \
+ --idn2 \
+ --disable-idn \
--host=$ARCH-slackware-linux \
--build=$ARCH-slackware-linux \
- $NOTMUCH $KYOTO $IDN2 $LUA
+ $NOTMUCH $KYOTO $LUA
make
make DESTDIR=$PKG install