You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-strategy/defcon-demo/files/defcon

16 lines
400 B

#!/bin/sh
if [ -n "GAMEDIR/lib" ] ; then
if [ "${LD_LIBRARY_PATH+set}" = "set" ] ; then
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:GAMEDIR/lib"
else
export LD_LIBRARY_PATH="GAMEDIR/lib"
fi
fi
if [[ ! -e ~/.defcon/lib ]] ; then
mkdir -p ~/.defcon/lib \
&& cd ~/.defcon/lib \
&& ln -s "GAMEDIR"/lib/* .
fi
cd ~/.defcon/lib
LD_PRELOAD="GAMEDIR/lib/chdir.so" exec ./defcon.bin.x86 "$@"