2006-07-05 08:53:12 +02:00
|
|
|
# $NetBSD: DEINSTALL,v 1.2 2006/07/05 06:53:13 jlam Exp $
|
|
|
|
|
|
|
|
case "${STAGE}" in
|
|
|
|
DEINSTALL)
|
|
|
|
LIST="${PKG_PREFIX}/share/tetrinetx/game.log"
|
|
|
|
for to_trash in ${LIST}; do
|
|
|
|
if ${TEST} -d "$to_trash"; then
|
|
|
|
${RM} -fr $to_trash/*
|
|
|
|
elif ${TEST} -f "$to_trash"; then
|
|
|
|
${RM} -f $to_trash
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
2006-02-14 18:03:54 +01:00
|
|
|
esac
|