Fri, 27 May 2016 18:02:00 -0400
cheaply color diffs, disable nested quote colors
290 | 1 | #!/bin/sh |
2 | set -eu | |
3 | ||
312 | 4 | echo "Requirements (on debian):" |
321 | 5 | echo "autoconf libncursesw5-dev libssl-dev libtokyocabinet-dev libsasl2-dev" |
312 | 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 | |
321 | 25 | make -s -j3 |
290 | 26 | |
27 | cd ~/bin | |
318 | 28 | ln -sf ../sandbox/neomutt/mutt |
29 | ln -sf ../sandbox/neomutt/pgpewrap | |
290 | 30 |