Skip to content

Instantly share code, notes, and snippets.

@ckunte
Created December 26, 2021 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckunte/93a58be97e848cb3e8696d683aacca26 to your computer and use it in GitHub Desktop.
Save ckunte/93a58be97e848cb3e8696d683aacca26 to your computer and use it in GitHub Desktop.
Compiling mtm from source
#!/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