Wed, 06 Feb 2019 21:03:11 -0600
switch from vundle to plug
#!/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' export EXTRA_CFLAGS="-iquote $(pwd)" ;; *) CONFIGURE_OPTIONS='' ;; esac autoreconf -i --force || true ./configure \ --with-mailpath=/var/mail \ --ssl \ --sasl \ --lmdb \ --gpgme \ $CONFIGURE_OPTIONS \ --disable-doc make -s -j3 cd ~/bin for BIN in neomutt pgpewrap; do cp ../sandbox/neomutt/$BIN . done ln -sf neomutt mutt :<<=cut =head1 NAME setup-neomutt - Clone/update and build neomutt =head1 DESCRIPTION Run to do the above, incl. copying binaries into C<~/bin> after 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