summary refs log tree commit diff
path: root/pkgs/games/quake3/wrapper/builder.sh
blob: f070973681efaa557c28700ce26a95cb5e253af0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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

# We add Mesa to the end of $LD_LIBRARY_PATH to provide fallback
# software rendering.  GCC is needed so that libgcc_s.so can be found
# when Mesa is used.
makeWrapper $game/ioquake3.* $out/bin/quake3 \
    --suffix-each LD_LIBRARY_PATH ':' "$mesa/lib $gcc/lib" \
    --add-flags "+set fs_basepath $out +set r_allowSoftwareGL 1"