2022-07-02 12:24:49 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
DIR=$(dirname "$(readlink -f "$0")")
|
|
|
|
. "$DIR/../env.sh"
|
|
|
|
|
|
|
|
log 'Setting up neomutt'
|
|
|
|
|
|
|
|
case "$PM" in
|
|
|
|
pacman)
|
|
|
|
sudo pacman -S --noconfirm --needed neomutt isync lynx notmuch cronie urlscan
|
|
|
|
yay -S --noconfirm --needed abook cyrus-sasl-xoauth2-git
|
|
|
|
;;
|
2022-12-11 15:34:09 +00:00
|
|
|
apt)
|
|
|
|
sudo apt install -y gettext libgettextpo-dev libxml2-utils xsltproc libidn11-dev libsasl2-dev liblmdb-dev \
|
2022-12-12 01:09:11 +00:00
|
|
|
perl libssl-dev libnotmuch-dev msmtp lynx urlscan
|
|
|
|
|
|
|
|
# neomutt
|
2022-12-11 15:34:09 +00:00
|
|
|
git clone git@github.com:neomutt/neomutt.git ~/Projects/klesh/neomutt
|
|
|
|
cd ~/Projects/klesh/neomutt
|
|
|
|
./configure --disable-doc --sasl --with-lmdb=/usr/lib
|
|
|
|
make
|
|
|
|
sudo make install
|
2022-12-12 01:09:11 +00:00
|
|
|
|
|
|
|
# mutt-wizard
|
2022-12-11 15:34:09 +00:00
|
|
|
git clone git@github.com:LukeSmithxyz/mutt-wizard.git ~/Projects/klesh/mutt-wizard
|
|
|
|
cd ~/Projects/klesh/mutt-wizard
|
|
|
|
sudo make install
|
|
|
|
git clone git clone https://git.code.sf.net/p/isync/isync isync-isync ~/Project/klesh/isync-isync
|
|
|
|
|
2022-12-12 01:09:11 +00:00
|
|
|
# isync
|
2022-12-11 15:34:09 +00:00
|
|
|
sudo cpan install Date::Parse
|
|
|
|
cd ~/Projects/klesh/isync-isync
|
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
sudo make install
|
2023-01-05 01:57:18 +00:00
|
|
|
|
|
|
|
# isync xoauth2
|
|
|
|
git clone https://github.com/moriyoshi/cyrus-sasl-xoauth2.git ~/Projects/klesh/cyrus-sasl-xoauth2
|
|
|
|
cd ~/Projects/klesh/cyrus-sasl-xoauth2
|
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
sed -i 's%pkglibdir = ${CYRUS_SASL_PREFIX}/lib/sasl2%pkglibdir = ${CYRUS_SASL_PREFIX}/lib/x86_64-linux-gnu/sasl2%' Makefile
|
|
|
|
make
|
|
|
|
sudo make install
|
2022-07-02 12:24:49 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
|
|
case "$UNAMEA" in
|
|
|
|
*artix*)
|
|
|
|
sudo pacman -S --noconfirm --needed cronie-runit
|
|
|
|
sudo ln -sf /etc/runit/sv/cronie/ /run/runit/service/
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
|
|
makeinstallrepo https://github.com/klesh/mutt-wizard.git mutt-wizard
|