User:Jaffa/Developing with Vala

m (Detailed build instructions)
m (IDE: Extra Debian/Ubuntu dependencies)
Line 2: Line 2:
Build [http://www.monodevelop.com/Download_-_Unstable Monodevelop v1.9] with add-ins:
Build [http://www.monodevelop.com/Download_-_Unstable Monodevelop v1.9] with add-ins:
-
  apt-get install mono-1.0-devel
+
  apt-get install mono-1.0-devel libmono-system-runtime2.0-cil libmono-winforms2.0-cil
  wget http://go-mono.com/sources/mono-addins/mono-addins-0.3.1.tar.bz2 \
  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/gtk-sharp-2.0/gtk-sharp-2.8.4.tar.bz2 \

Revision as of 12:39, 12 July 2008

IDE

Build Monodevelop v1.9 with add-ins:

apt-get install mono-1.0-devel libmono-system-runtime2.0-cil libmono-winforms2.0-cil
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)