blob: 48a7f39297004b2748c1ef438b58c900690504ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: DEINSTALL,v 1.3 2004/03/10 02:18:46 snj Exp $
PKGNAME=$1
case $2 in
POST-DEINSTALL)
cat << EOF
=============================================================================
If you won't be using ${PKGNAME} any longer, you may want to remove the
score file /var/games/gtkballs-scores.
=============================================================================
EOF
;;
esac
exit 0
|