Shawn Moore has posted instructions for installing zsnes on the XO from his blog. I noticed a few typos and here is how I did it. This is a good way to get over any fears of compiling software from source code!
$ su
- install the library source files and compiler
# yum install gcc gcc-c++ make nasm zlib-devel SDL-devel
# exit
- get the source for zsnes itself:
$ wget http://superb-west.dl.sourceforge.net/sourceforge/zsnes/zsnes151src.tar.bz2
- extract the archived source:
$tar jxvf zsnes151src.tar.bz2
- enter the extracted folder to src…
$ cd zsnes_1_51/src
$ ./configure –disable-debugger –disable-opengl
$ make
- it’ll take a few minutes to compile then try running it!
$ ./zsnes
enjoy!
If you want to install the program in your system for all users to run, read on…
(more…)