#!/bin/sh
#
# LuxMan uninstall script
#

#
# We can't just do a blind delete since the user may have
# added a scenario
#

# Remove binaries
echo Removing binaries...
rm -f /usr/games/luxchk
rm -f /usr/games/luxman
rm -f /usr/games/luxman-snd

# Remove manpages
echo Removing manpages...
rm -f /usr/man/man6/luxman.6 /usr/man/man6/luxchk.6

# Remove modern and old scenarios
echo Removing modern and old scenarios...
rm -rf /usr/games/lib/luxman/modern
rm -rf /usr/games/lib/luxman/oldscen

# Remove sounds
echo Removing sounds...
rm -rf /usr/games/lib/luxman/11k
rm -rf /usr/games/lib/luxman/8k

# Leave the rest

