-
-
Save zarkone/5432774 to your computer and use it in GitHub Desktop.
Install Monodevelop 4.0.4 on Ubuntu 12.04 LTS
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
#!/bin/bash | |
sudo apt-get install build-essential automake checkinstall intltool git | |
sudo apt-get install mono-complete gtk-sharp2 gnome-sharp2 | |
git clone https://github.com/mono/mono-addins | |
cd mono-addins | |
./autogen.sh --prefix=/usr | |
make | |
sudo make install | |
cd .. | |
git clone git://github.com/mono/monodevelop | |
cd monodevelop | |
git checkout monodevelop-4.0.4 | |
git submodule update --init --recursive | |
./autogen.sh --prefix=/usr | |
make | |
sudo checkinstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment