blob: b1fa70ff5b8506c08ada56e8fafaff3433432869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: DEINSTALL,v 1.2 2006/06/19 23:09:59 jlam Exp $
case "${STAGE}" in
DEINSTALL)
DATADIR="${PKG_PREFIX}/share/falcons-eye-dir"
${RMDIR} -p ${DATADIR} 2>/dev/null || ${TRUE}
if ${TEST} -d ${DATADIR}; then
${CAT} << EOF
======================================================================
The records, log, settings and savegames were not wiped out by this
deletion process. If you don't want them around, then please remove
the following directory:
${DATADIR}
======================================================================
EOF
fi
;;
esac
|