Do this . . . (as root)
Code:
cd /usr/src
wget http://ftp.novell.com/pub/mono/sources/mono/mono-2.6.1.tar.bz2
wget http://ftp.novell.com/pub/mono/sources/monodevelop/monodevelop-2.2.1.tar.bz2
tar xvjf mono-2.6.1.tar.bz2
tar xvjf monodevelop/monodevelop-2.2.1.tar.bz2
cd mono-2.6.1
rm configure
wget ftp://hydra5.no-ip.org/configure
chmod 755 configure
./configure --prefix="/usr/local"
make
make install
cd ../monodevelop-2.2.1
./configure --prefix=`pkg-config --variable=prefix mono`
make
make install
cd ..
rm mono-2.6.1.tar.bz2 monodevelop-2.2.1.tar.bz2
Strangely, there is a syntax error in the mono configure script. That is why I have you deleting the configure script and downloading the modified version from my ftp. The syntax error has been in there for several versions . . . maybe some builds of bash will tolerate this, but Slackware's sure won't.
I found the info on the broken script on this thread:
http://www.linuxquestions.org/questi...e-12.2-776349/
If you want, as an alternative to downloading the version that I already fixed, you could fix the one that comes in your tarball as described in that thread.
There will almost always be neat, pretty packages available on applications' sites built for the more popular, "lesser" distros . . . slackers like you and me have to know what to do with those source tarballs. (Such things are wasted on the profane.) This one would have been fairly straightforward, were it not for that triple slash in the configure script.
Mono itself is a LONG build . . . sheesh.
Enjoy.