bin/setup-neomutt

Fri, 18 May 2018 12:11:02 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 18 May 2018 12:11:02 -0400
changeset 709
1ee07b0bb607
parent 664
66ba2d649859
child 713
650ca91e3197
permissions
-rwxr-xr-x

update mailpath

#!/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/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

mercurial