-
-
Save dasgoll/cd7330ebf88ba20397f9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/sh | |
sudo apt-get install git mono-mcs mono-gmcs autoconf libtool g++ libglib2.0-cil-dev libgtk2.0-cil-dev libglade2.0-cil-dev libgnome2.0-cil-dev libgconf2.0-cil-dev | |
mkdir mono | |
cd mono | |
git clone https://github.com/mono/mono.git | |
git clone https://github.com/mono/monodevelop.git | |
git clone https://github.com/mono/xsp.git | |
git clone https://github.com/mono/mono-addins.git | |
cd mono | |
./autogen.sh --prefix=/usr && make && sudo make install | |
cd ../mono-addins | |
./autogen.sh --prefix=/usr && make && sudo make install | |
cd ../xsp | |
./autogen.sh --prefix=/usr && make && sudo make install | |
cd ../monodevelop | |
./configure --prefix=/usr && make && sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment