【摘录】How to compile mame in Ubuntu 10.04 Lucid Lynx
http://maxolasersquad.blogspot.com/2010/12/how-to-compile-mame-in-ubuntu-1004.html
Using the following instructions you should be able to compile Mame on Ubuntu 10.04 Lucid Lynx, though it should also work in most any other version of Ubuntu too.
- Download the latest source from http://mamedev.org/release.html Grab the .zip version. The following command will grab the latest source as of the time I wrote this tutorial.
wget http://mamedev.org/downloader.php?file=releases/mame0140s.zip --user-agent="Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6" -O mame_source.zip
Here we change the user/agent string, because the server is set to prevent robots, like wget, from programmatically downloading the file. - Unzip the file, and then unzip that file. Place it anywhere you like, perhaps your home directory.
mkdir mame
unzip mame_source.zip
unzip mame.zip -d mame
rm mame.zip - Next we install all the libraries and dependencies necessary to build mame.
sudo aptitude install build-essential libgtk2.0-dev libgnome2-dev libsdl1.2-dev
- Finally, lets get to building it.
cd mame
make - Let's setup a rom folder and get some roms.
mkdir roms
cd roms
wget http://mamedev.org/roms/sidetrac/sidetrac.zip --user-agent="Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6" - Now that we have legally obtained an arcade ROM, let's play it!
cd ..
posted on 2012-04-26 17:40 IamEasy_Man 阅读(381) 评论(0) 编辑 收藏 举报