nixpkgs/pkgs/misc/emulators/atari800/builder.sh
Eelco Dolstra 37832b3af0 * Atari800 - an 8-bit Atari emulator.
svn path=/nixpkgs/trunk/; revision=6110
2006-08-12 22:33:51 +00:00

16 lines
222 B
Bash

source $stdenv/setup
preConfigure=preConfigure
preConfigure() {
cd src
}
postInstall=postInstall
postInstall() {
romsDir=$out/share/atari800/roms
ensureDir $romsDir
unzip $rom -d $romsDir
}
genericBuild