Skip to content

Instantly share code, notes, and snippets.

@johnnyasantoss
Last active October 16, 2017 23:43
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Installs mono (5.2.0.224) on Fedora.
#!/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