3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/games/quake3/wrapper/builder.sh

21 lines
298 B
Bash
Raw Normal View History

source $stdenv/setup
ensureDir $out/baseq3
for i in $paks; do
if test -d "$paks/baseq3"; then
ln -s $paks/baseq3/* $out/baseq3/
fi
done
ensureDir $out/bin
cat >$out/bin/quake3 <<EOF
exec $game/ioquake3.i386 \
+set fs_basepath $out \
"\$@"
EOF
chmod +x $out/bin/quake3