/usr/games/lure is in lure-of-the-temptress 1.1+ds2-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | #!/bin/sh
set -e
domain=lure
if [ $(which gettext) ]; then
gettext="gettext --domain=$domain -s --"
else
gettext=echo
fi
usage()
{
$gettext "Usage: lure [OPTION]"
$gettext "Start Lure of the Temptress"
echo
$gettext "--help display this help and exit"
$gettext "--version display version information and exit"
$gettext "--en play the English version of Lure"
$gettext "--de play the German version of Lure"
$gettext "--fr play the French version of Lure"
$gettext "--it play the Italian version of Lure"
$gettext "--es play the Spanish version of Lure"
}
version()
{
echo "Lure of the Temptress 1.1"
echo "Copyright (C) Revolution Software Ltd."
echo "ScummVM engine Copyright (C) The ScummVM Team"
}
if [ "$#" -gt "1" ]; then
usage
exit 1
elif [ "$#" -lt "1" ]; then
LURE_LANG=$(
echo $LANGUAGE $LANG en | tr ': ' '\n' | cut -c1-2 | while read lang;
do
if [ "$lang" = "en" \
-o "$lang" = "de" \
-o "$lang" = "fr" \
-o "$lang" = "it" \
-o "$lang" = "es" ]; then
echo $lang
break
fi
done
)
/usr/games/scummvm -p /usr/share/scummvm/lure-of-the-temptress/$LURE_LANG lure
else
case "$1" in
--help)
usage
;;
--version)
version
;;
--en)
/usr/games/scummvm -p /usr/share/scummvm/lure-of-the-temptress/en lure
;;
--de)
/usr/games/scummvm -p /usr/share/scummvm/lure-of-the-temptress/de lure
;;
--fr)
/usr/games/scummvm -p /usr/share/scummvm/lure-of-the-temptress/fr lure
;;
--it)
/usr/games/scummvm -p /usr/share/scummvm/lure-of-the-temptress/it lure
;;
--es)
/usr/games/scummvm -p /usr/share/scummvm/lure-of-the-temptress/es lure
;;
*)
usage
exit 1
;;
esac
fi
exit 0
|