/usr/games/lure is in lure-of-the-temptress 1.1+ds2-1.
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 | #!/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 "--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()
{
	$gettext "Lure of the Temptress 1.1"
	$gettext "Copyright (C) Revolution Software Ltd."
	$gettext "ScummVM engine Copyright (C) The ScummVM Team"
}
if [ "$#" -gt "1" ]; then
	usage
	exit 1
elif [ "$#" -lt "1" ]; then
	/usr/games/scummvm -p /usr/share/scummvm/lure-of-the-temptress/en lure
else
	case "$1" in
	--help)
		usage
		;;
	--version)
		version
		;;
	--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
 |