pkgsrc/games/neverball/files/neverball.sh
2004-04-18 05:09:28 +00:00

51 lines
764 B
Bash

# !/bin/sh
#
# $NetBSD: neverball.sh,v 1.2 2004/04/18 05:09:28 xtraeme Exp $
progname=$(basename $0)
usage()
{
cat <<_EOF
Usage: ${progname} -x [game]
There are two games to play, \`neverball' and \`neverputt',
you can choose any of them via -x flag, i.e:
${progname} -x ball
${progname} -x putt
Enjoy!
_EOF
}
args=`getopt x: $*`
set -- $args
while [ $# -gt 0 ]; do
case "$1" in
-x)
game="$2"
case "$game" in
ball)
cd @SHAREDIR@ && exec ./neverball
;;
putt)
cd @SHAREDIR@ && exec ./neverputt
;;
esac
shift
;;
--)
shift; break
;;
esac
shift
done
if [ $? -lt 1 ]; then
usage
fi
exit 0