Skip to content

Instantly share code, notes, and snippets.

@LeeiFrankJaw
Last active March 12, 2019 19:50
Show Gist options
  • Save LeeiFrankJaw/75def6c339baf83bc510eb5840f068e8 to your computer and use it in GitHub Desktop.
Save LeeiFrankJaw/75def6c339baf83bc510eb5840f068e8 to your computer and use it in GitHub Desktop.
Install mu from source repo
#!/bin/bash
git clone git@github.com:djcb/mu.git
cd mu/
git checkout v1.0
sudo apt install automake autoconf-archive libglib2.0-dev libxapian-dev libgmime-2.6-dev libunwind-dev
./autogen.sh
# compile with Clang
# CC=clang CXX=clang++ LDFLAGS='-fuse-ld=lld' ./autogen.sh
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment