60c5a78963
Originally supplied by collver@linuxfreemail.com in pkg/14359 and subsequently modified somewhat mostly by him.
17 lines
431 B
Bash
17 lines
431 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1.1.1 2002/01/21 11:56:16 pooka Exp $
|
|
#
|
|
|
|
case $2 in
|
|
DEINSTALL) cat << EOF
|
|
|
|
=============================================================
|
|
The records, log, settings and savegames were not wiped out
|
|
by this deletion process. If you don't want them around,
|
|
please remove ${PKG_PREFIX}/share/falcons-eye-dir.
|
|
=============================================================
|
|
|
|
EOF
|
|
;;
|
|
esac
|