mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
7efb8b7926
(forced -j1 as parallel building is broken --ponce) Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
29 lines
725 B
Bash
29 lines
725 B
Bash
#!/bin/sh
|
|
|
|
# Wrapper script for Rise of the Triad, by B. Watson
|
|
|
|
# Figures out which rott binary to execute, based on which
|
|
# game data files are installed.
|
|
|
|
DATADIR=/usr/share/games/rott
|
|
CDROMFILE=$DATADIR/ROTTCD.RTC
|
|
REGFILE=$DATADIR/DARKWAR.WAD
|
|
DEMOFILE=$DATADIR/HUNTBGIN.WAD
|
|
BINDIR=/usr/games
|
|
|
|
if [ -r $CDROMFILE ]; then
|
|
exec $BINDIR/rott-cdrom "$@"
|
|
elif [ -r $REGFILE ]; then
|
|
exec $BINDIR/rott-reg "$@"
|
|
elif [ -r $DEMOFILE ]; then
|
|
exec $BINDIR/rott-demo "$@"
|
|
else
|
|
cat 1>&2 <<EOF
|
|
$0: Can't find any usable game data files.
|
|
|
|
Copy the game data files from either the shareware or full version
|
|
of ROTT to /usr/share/games/rott, and if necessary, rename the files
|
|
to ALL UPPERCASE names (e.g. DARKWAR.WAD).
|
|
EOF
|
|
exit 1
|
|
fi
|