nixpkgs/pkgs/games/exult/builder.sh
Eelco Dolstra 2ad0491113 * Exult now with glorious Roland MT-32 music!
svn path=/nixpkgs/trunk/; revision=6503
2006-09-12 15:23:28 +00:00

11 lines
198 B
Bash

source $stdenv/setup
postInstall=postInstall
postInstall() {
ensureDir $out/share/exult/music
for i in $musicFiles; do
unzip -o -d $out/share/exult/music $i
done
}
genericBuild