58c6069b03
PR: ports/46240 Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
15 lines
312 B
Bash
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 "$@"
|