Skip to content

Instantly share code, notes, and snippets.

@zarkone
Forked from choffmeister/monodevelop4-build.sh
Last active December 4, 2018 17:51
Show Gist options
  • Save zarkone/5432774 to your computer and use it in GitHub Desktop.
Save zarkone/5432774 to your computer and use it in GitHub Desktop.
Install Monodevelop 4.0.4 on Ubuntu 12.04 LTS
#!/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