2018-02-22 16:27:37 +00:00
|
|
|
#!/bin/bash
|
2018-02-27 05:15:14 +00:00
|
|
|
set -e
|
2018-02-22 16:27:37 +00:00
|
|
|
|
|
|
|
_recipe brew
|
|
|
|
_brew isync
|
|
|
|
|
|
|
|
_recipe emacs
|
2018-02-23 21:17:52 +00:00
|
|
|
case $_PLATFORM in
|
|
|
|
darwin)
|
|
|
|
EMACS=$(which emacs) _brew mu --with-emacs --HEAD
|
|
|
|
;;
|
|
|
|
*)
|
2018-04-11 03:24:23 +00:00
|
|
|
_recipe _apt
|
|
|
|
for dep in \
|
|
|
|
build-essential \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
libtool \
|
|
|
|
texinfo \
|
|
|
|
libgmime-2.6-dev \
|
|
|
|
libxapian-dev \
|
|
|
|
guile-2.0-dev \
|
|
|
|
html2text \
|
|
|
|
xdg-utils \
|
|
|
|
libwebkit-dev
|
|
|
|
do
|
|
|
|
_apt $dep
|
|
|
|
done
|
|
|
|
dir=`mktemp -d` && \
|
|
|
|
pushd $dir >/dev/null
|
|
|
|
echo "[tgz] Fetching mu"
|
|
|
|
curl -sL https://github.com/djcb/mu/archive/master.tar.gz \
|
|
|
|
| tar xz --strip 1 && \
|
|
|
|
echo "[tgz] Configuring mu" && \
|
|
|
|
./autogen.sh >/dev/null 2>&1 && \
|
|
|
|
./configure >/dev/null 2>&1 && \
|
|
|
|
echo "[tgz] Building mu" && \
|
|
|
|
make >/dev/null 2>&1 && \
|
|
|
|
echo "[tgz] Installing mu" && \
|
|
|
|
sudo make install >/dev/null 2>&1
|
|
|
|
popd >/dev/null
|
|
|
|
rm -rf "$dir"
|
2018-02-23 21:17:52 +00:00
|
|
|
;;
|
|
|
|
esac
|
2018-02-22 16:27:37 +00:00
|
|
|
|
|
|
|
_recipe nvm
|
|
|
|
_npm imapnotify
|