Never before has collecting mushrooms been this mildly entertaining. At least not in outer space. It's more of a lifestyle than a game, really. Now with graphics and sound, too!
More info: Ubuntu Game List
If you have OGRE version 1.4.x installed you can jump right to where funguloids needs to be compiled
Make sure that the driver to your 3D graphic card is properly, installed and working.
Check if your sourcelist is fully enabled (universe, multiverse and mediabuntu).
Next step is to download Compiling tools and the right libs to make Funguloids work.
Code:
sudo aptitude update && sudo aptitude upgrade sudo aptitude install build-essential checkinstall automake libtool sudo aptitude install zlib1g-dev libgtk2.0-dev libdevil-dev libcegui-mk2-dev libfreetype6-dev libtiff4-dev libgl1-mesa-dev bison flex libzzip-dev libxt-dev libxaw7-dev libxxf86vm-dev libxrandr-dev xlibs-dev libopenexr-dev liblua5.1-0-dev libopenal-dev libalut-dev libvorbis-dev libmad0-dev libjpeg62-dev libpng12-dev libtiff4-dev libmng-dev
Now is the time to compile and install the extra libs that is needed to make OGRE work (Funguloids needs OGRE);
FreeImage
To the terminal;
Code:
cd ~/Desktop wget http://prdownloads.sourceforge.net/freeimage/FreeImage393.zip?download unzip FreeImage393.zip cd FreeImage make sudo checkinstall
Code:
cd ~/Desktop wget http://developer.download.nvidia.com/cg/Cg_1.5/1.5.0/0022/Cg-1.5_Aug2007_x86.tar.gz tar zxfv Cg-1.5_Aug2007_x86.tar.gz cd usr sudo cp -r * /usr
Code:
cd ~/Desktop wget http://downloads.sourceforge.net/wgois/ois-1.0.tar.gz?modtime=1182593947&big_mirror=0 tar zxfv ois-1.0.tar.gz cd ois ./bootstrap ./configure --prefix=/usr make sudo make install
OGRE
To the terminal;
Code:
cd ~/Desktop wget http://downloads.sourceforge.net/ogre/ogre-linux_osx-v1-4-4.tar.bz2 tar jxfv ogre-linux_osx-v1-4-4.tar.bz2 cd ogrenew ./configure --prefix=/usr --disable-freeimage --enable-openexr make sudo make install
Now you're ready to compile Funguloids;
Code:
cd ~/Desktop wget http://downloads.sourceforge.net/funguloids/funguloids-linux-1.06-4.tar.bz2?download tar jxfv funguloids-linux-1.06-4.tar.bz2 cd funguloids ./configure make sudo make install cd bin sudo mv funguloids /usr/local/bin
Done!
Code:
sudo nano /usr/share/applications/funguloids.desktop
Add the following;
[Desktop Entry]
Name=Those Funny Funguloids!
Comment=Never before has collecting mushrooms been this mildly entertaining. At least not in outer space. It's more of a lifestyle than a game.
Exec=funguloids
Icon=/usr/local/share/games/funguloids/icon/GLX_icon.png
Terminal=false
Type=Application
Categories=Application;Game;
Save (ctrl)+(o) and Exit (ctrl)+(x)
You can now launch Those Funny Funguloids! by Applications —> Games —> Those Funny Funguloids!
or by typing funguloids in the terminal.
Enjoy!