Last active
October 16, 2017 23:43
-
-
Save johnnyasantoss/1cf2d62858e377b3fc4c462eb2c8c795 to your computer and use it in GitHub Desktop.
Installs mono (5.2.0.224) on Fedora.
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/bash | |
VERSION=5.2.0.224 | |
curl -OL https://download.mono-project.com/sources/mono/mono-$VERSION.tar.bz2 | |
PREFIX=/usr/local | |
tar xvf mono-$VERSION.tar.bz2 | |
cd mono-$VERSION | |
./configure --prefix=$PREFIX | |
sudo make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment