Wed, 18 May 2016 23:58:26 -0400
pointless maps
290 | 1 | #!/bin/sh |
2 | set -eu | |
3 | ||
4 | cd | |
5 | mkdir -p sandbox | |
6 | ||
7 | if [ ! -d sandbox/neomutt ]; then | |
8 | git clone https://github.com/neomutt/neomutt.git sandbox/neomutt | |
9 | else | |
10 | git -C sandbox/neomutt pull | |
11 | fi | |
12 | ||
13 | cd sandbox/neomutt | |
14 | ||
15 | ./prepare \ | |
16 | --with-ssl \ | |
302 | 17 | --enable-hcache \ |
290 | 18 | --enable-imap --enable-smtp \ |
293
7df7f79939f0
drop hcache, make default
Meredith Howard <mhoward@roomag.org>
parents:
291
diff
changeset
|
19 | --enable-sidebar >/dev/null |
7df7f79939f0
drop hcache, make default
Meredith Howard <mhoward@roomag.org>
parents:
291
diff
changeset
|
20 | |
7df7f79939f0
drop hcache, make default
Meredith Howard <mhoward@roomag.org>
parents:
291
diff
changeset
|
21 | make -j3 >/dev/null |
290 | 22 | |
23 | cd ~/bin | |
24 | ln -sf ../sandbox/neomutt/mutt mutt | |
25 |