freebsd-ports/emulators/linux-ePSXe/files/epsxe
Pav Lucistnik 5a25befeea - Update to 1.6.0
PR:		ports/59670
Submitted by:	Jean-Yves Lefort <jylefort@brutele.be> (maintainer)
2003-12-26 23:01:39 +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 "$@"