Last active
December 14, 2015 16:28
-
-
Save choffmeister/5114966 to your computer and use it in GitHub Desktop.
Install MonoDevelop 4 under Ubuntu 12.04 LTS from sources
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 mono-addins-utils gtk-sharp2 gnome-sharp2 | |
git clone git://github.com/mono/monodevelop | |
cd monodevelop | |
git checkout monodevelop-4.0 | |
git submodule update --init --recursive | |
./configure | |
make | |
sudo checkinstall |
I get the same error as renatocantarino on Arch Linux, but only when specifically installing the Vala bindings (monodevelop-vala). I've already got the main IDE installed.
Seemingly the package is no longer actively maintained, so it's fallen behind current Vala versions. Oh well. Time to move to another IDE :(
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
My build Show a error:
./JavaLanguageBinding.cs(31,28): error CS0234: The type or namespace name
Dom' does not exist in the namespace
MonoDevelop.Projects'. Are you missing an assembly reference?./JavaLanguageBinding.cs(32,28): error CS0234: The type or namespace name
Dom' does not exist in the namespace
MonoDevelop.Projects'. Are you missing an assembly reference?./JavaLanguageBinding.cs(34,28): error CS0234: The type or namespace name
CodeGeneration' does not exist in the namespace
MonoDevelop.Projects'. Are you missing an assembly reference?./JavaLanguageBinding.cs(109,24): error CS0246: The type or namespace name
IParser' could not be found. Are you missing a using directive or an assembly reference? ./JavaLanguageBinding.cs(113,24): error CS0246: The type or namespace name
IRefactorer' could not be found. Are you missing a using directive or an assembly reference?how i can resolve this?