freebsd-ports/emulators/linux-ePSXe/files/epsxe
Edwin Groothuis e7316e5d24 Re-add port: emulators/linux-ePSXe (linux_base conflicts are gone)
Now that linux_base conflicts have been fixed,
	emulators/linux-ePSXe must reappear.

PR:		ports/75838
Submitted by:	Jean-Yves Lefort <jylefort@brutele.be>
2005-01-22 10:37:38 +00:00

15 lines
294 B
Bash

#!/bin/sh
# epsxe - ePSXe launcher
#
# (c) 2002-2003 Jean-Yves Lefort.
# All rights reserved.
USERDIR=$HOME/.epsxe
if [ ! -x $USERDIR/epsxe ]; then
echo "$USERDIR/epsxe not found or not executable."
echo "You should run epsxe-install."
exit 1
fi
cd $USERDIR && exec ./epsxe "$@"