Last active
March 12, 2019 19:50
-
-
Save LeeiFrankJaw/75def6c339baf83bc510eb5840f068e8 to your computer and use it in GitHub Desktop.
Install mu from source repo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
git clone [email protected]: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