Created
December 26, 2021 14:36
-
-
Save ckunte/93a58be97e848cb3e8696d683aacca26 to your computer and use it in GitHub Desktop.
Compiling mtm from source
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
#!/usr/bin/env bash | |
if ! [ -d "./mtm" ] ; then | |
git clone --depth=1 https://github.com/deadpixi/mtm.git | |
fi | |
if [ -d "./mtm" ] ; then | |
cd './mtm' || return | |
git pull --ff-only | |
make clean | |
make CURSESLIB=curses | |
echo "Run sudo make install in './mtm' for a good compile." | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment