User:Jaffa/Developing with Vala
m (Start page on using Vala for Maemo development, with IDE support) |
m (Detailed build instructions) |
||
| Line 1: | Line 1: | ||
== IDE == | == IDE == | ||
| - | + | Build [http://www.monodevelop.com/Download_-_Unstable Monodevelop v1.9] with add-ins: | |
| - | + | apt-get install mono-1.0-devel | |
| + | wget http://go-mono.com/sources/mono-addins/mono-addins-0.3.1.tar.bz2 \ | ||
| + | http://go-mono.com/sources/gtk-sharp-2.0/gtk-sharp-2.8.4.tar.bz2 \ | ||
| + | http://go-mono.com/sources/monodoc/monodoc-1.2.6.zip \ | ||
| + | http://go-mono.com/sources/monodevelop/monodevelop-1.9.tar.bz2 | ||
| + | tar xjf mono-addins-0.3.1.tar.bz2 && \ | ||
| + | (cd mono-addins-0.3.1 && \ | ||
| + | ./configure && make && sudo make install) | ||
| + | unzip monodoc-1.2.6.zip && \ | ||
| + | (cd monodoc-1.2.6 && \ | ||
| + | ./configure && make && sudo make install) | ||
| + | tar xjf monodevelop-1.9.tar.bz2 && \ | ||
| + | (cd monodevelop-1.9 && \ | ||
| + | ./configure && make && sudo make install) | ||
Revision as of 11:25, 12 July 2008
IDE
Build Monodevelop v1.9 with add-ins:
apt-get install mono-1.0-devel wget http://go-mono.com/sources/mono-addins/mono-addins-0.3.1.tar.bz2 \ http://go-mono.com/sources/gtk-sharp-2.0/gtk-sharp-2.8.4.tar.bz2 \ http://go-mono.com/sources/monodoc/monodoc-1.2.6.zip \ http://go-mono.com/sources/monodevelop/monodevelop-1.9.tar.bz2 tar xjf mono-addins-0.3.1.tar.bz2 && \ (cd mono-addins-0.3.1 && \ ./configure && make && sudo make install) unzip monodoc-1.2.6.zip && \ (cd monodoc-1.2.6 && \ ./configure && make && sudo make install) tar xjf monodevelop-1.9.tar.bz2 && \ (cd monodevelop-1.9 && \ ./configure && make && sudo make install)
