freebsd-ports/emulators/linux-ePSXe/files/linux-epsxe
Edwin Groothuis 58c6069b03 This is ePSXe, a Sony Playstation emulator (Linux binary).
PR:		ports/46240
Submitted by:	Jean-Yves Lefort <jylefort@brutele.be>
2003-01-12 02:47:35 +00:00

15 lines
312 B
Bash

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