Closed adskiremote closed 10 years ago
You'll also need the bash script to place in ~/RetroPie/roms/ports/
I called mine quake3.sh
create the file by doing...
cd ~/RetroPie/roms/ports/ nano quake3.sh
Copy and past the below in...
LD_LIBRARY_PATH=lib /opt/retropie/emulators/quake3/ioquake3.arm
Save the nano file. chmod it to executable by typing...
chmod +x quake3.sh
Now start EmulationStation and it should appear in ports.
That looks great - I will include this soon!
How does the entry in /etc/emulationstation/es_systems.cfg look like?
I just added it in Ports so it shows as Quake3. Similar to Duke3D and Doom 1.
If you prefer I can create a separate theme for it and have it under its own menu item.
Let me know which is best.
All, right - I see!
I just added Quake III Arena to the script - thanks for the work!
Anytime - it was too much fun not to :-)
Hi,
I've started a bash script to build Quake II into RetroPie. But my knowledge of bash is a little fuzzy. So anyone who has time to look and correct any code would be appreciated.
Then can be included in the main RetroPie script.
I've included a modified build.sh file that can be downloaded from my domain - I'm happy to leave this on there indefinitely.
Please see the bash file I've written:
Building Quake 3 - RetroPie
Required packaes - sudo apt-get install git gcc build-essential libsdl1.2-dev
function sources_quake3() { rmDirExists "$rootdir/emulators/quake3src" gitPullOrClone "$rootdir/emulators/quake3src" git://github.com/raspberrypi/quake3.git
}
function build_quake3() { pushd "$rootdir/emulators/quake3src/quake3"
}