1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 22:50:49 +00:00
nixpkgs/pkgs/games/exult/builder.sh

11 lines
198 B
Bash
Raw Normal View History

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