96c1421a7d
Submitted by Felix Kronlage <fkr@grummel.net>. Moon-buggy is a simple character graphics game, where you drive some kind of car across the moon's surface. Unfortunately there are dangerous craters there. Fortunately your car can jump over them!
48 lines
865 B
Bash
48 lines
865 B
Bash
#!/bin/sh
|
|
# $OpenBSD: DEINSTALL,v 1.1.1.1 2001/03/18 20:07:43 naddy Exp $
|
|
#
|
|
# moon-buggy de-installation
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
SCORE_DIR=/var/games/moon-buggy
|
|
|
|
do_notice()
|
|
{
|
|
echo
|
|
echo "+---------------"
|
|
echo "| To completely deinstall the $1 package you need to perform"
|
|
echo "| this step as root:"
|
|
echo "|"
|
|
echo "| rm -rf $SCORE_DIR"
|
|
echo "|"
|
|
echo "| Do not do this if you plan on re-installing $1"
|
|
echo "| at some future time."
|
|
echo "+---------------"
|
|
echo
|
|
}
|
|
|
|
# Verify proper execution
|
|
#
|
|
if [ $# -ne 2 ]; then
|
|
echo "usage: $0 distname DEINSTALL" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Verify/process the command
|
|
#
|
|
case $2 in
|
|
DEINSTALL)
|
|
if [ -d $SCORE_DIR ]; then
|
|
do_notice "$1"
|
|
fi
|
|
;;
|
|
*)
|
|
echo "usage: $0 distname DEINSTALL" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|