Skip to content

Instantly share code, notes, and snippets.

@johnnyasantoss
Last active October 16, 2017 23:43
Show Gist options
  • Save johnnyasantoss/1cf2d62858e377b3fc4c462eb2c8c795 to your computer and use it in GitHub Desktop.
Save johnnyasantoss/1cf2d62858e377b3fc4c462eb2c8c795 to your computer and use it in GitHub Desktop.
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