Sun, 31 Dec 2017 14:42:54 -0500
add conflict marker highlight
#!/bin/sh set -eu case ${1:-} in *help|-h) exec perldoc -T $0;; esac cd mkdir -p sandbox if [ ! -d sandbox/neomutt ]; then git clone --depth 1 https://github.com/neomutt/neomutt.git sandbox/neomutt else make -C sandbox/neomutt clean >/dev/null 2>&1 || true git -C sandbox/neomutt pull fi cd sandbox/neomutt case "$(uname -s)" in Darwin) CONFIGURE_OPTIONS='--with-ssl=/opt/local --with-gpgme=/opt/local' ;; *) CONFIGURE_OPTIONS='' ;; esac autoreconf -i --force || true ./configure \ --with-mailpath=/var/spool/mail \ --ssl \ --sasl \ --lmdb \ --gpgme \ $CONFIGURE_OPTIONS \ --disable-doc make -s -j3 cd ~/bin for BIN in neomutt mutt_dotlock pgpewrap; do ln -sf ../sandbox/neomutt/$BIN done ln -sf ../sandbox/neomutt/neomutt mutt :<<=cut =head1 NAME setup-neomutt - Clone/update and build neomutt =head1 DESCRIPTION Run to do the above, incl. symlinking relevant binaries in C<~/bin> to the neomutt build. =head1 REQUIREMENTS =head2 Debian apt install autoconf links pandoc gnupg2 gpgsm urlscan libncursesw5-dev \ libssl-dev libsasl2-dev liblmdb-dev libgpgme11-dev =head2 Cygwin / Babun pact install autoconf links libncursesw-devel openssl-devel libsasl2-devel \ liblmdb-devel libgpgme-devel gpg2 isn't available in cygwin, but there is a windows build. using it with cygwin paths requires a wrapper though. =cut