1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
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