summaryrefslogtreecommitdiffstats
path: root/games/transfusion/transfusion.in
blob: a498cdae9afc003917e3b08a39a3d10aab59e6e3 (plain)
#!/bin/sh

# Silly wrapper script for transfusion, by B. Watson

set -e

case "$0" in
	*-dedicated)
		GAME=dedicated
		;;
	*)
		GAME=glx
		;;
esac

# You can override these in the environment, if you have multiple
# versions of transfusion installed.

TF_VERSION=${TF_VERSION:-@VERSION@}
TF_GAMEDIR=${TF_GAMEDIR:-/usr/share/games/transfusion-$TF_VERSION}
TF_BIN=${TF_BIN:-/usr/libexec/transfusion-$TF_VERSION/transfusion-$GAME}

cd $TF_GAMEDIR
exec $TF_BIN "$@"