Sat, 21 May 2016 00:43:21 -0400
link pgpewrap too
290 | 1 | #!/bin/sh |
2 | set -eu | |
3 | ||
312 | 4 | echo "Requirements (on debian):" |
5 | echo "autoconf libncurses5-dev libssl-dev libtokyocabinet-dev libsasl2-dev" | |
6 | echo "links" | |
7 | ||
290 | 8 | cd |
9 | mkdir -p sandbox | |
10 | ||
11 | if [ ! -d sandbox/neomutt ]; then | |
12 | git clone https://github.com/neomutt/neomutt.git sandbox/neomutt | |
13 | else | |
14 | git -C sandbox/neomutt pull | |
15 | fi | |
16 | ||
17 | cd sandbox/neomutt | |
18 | ||
19 | ./prepare \ | |
311 | 20 | --with-ssl --with-sasl \ |
302 | 21 | --enable-hcache \ |
290 | 22 | --enable-imap --enable-smtp \ |
293
7df7f79939f0
drop hcache, make default
Meredith Howard <mhoward@roomag.org>
parents:
291
diff
changeset
|
23 | --enable-sidebar >/dev/null |
7df7f79939f0
drop hcache, make default
Meredith Howard <mhoward@roomag.org>
parents:
291
diff
changeset
|
24 | |
7df7f79939f0
drop hcache, make default
Meredith Howard <mhoward@roomag.org>
parents:
291
diff
changeset
|
25 | make -j3 >/dev/null |
290 | 26 | |
27 | cd ~/bin | |
318 | 28 | ln -sf ../sandbox/neomutt/mutt |
29 | ln -sf ../sandbox/neomutt/pgpewrap | |
290 | 30 |