1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00
freebsd-ports/games/golddig/files/pkg-deinstall.in
Dmitry Marakasov e7b81852c3 - Stagify
- Improve highscore file handling
- Pass maintainership to games@
- Fix insallation from user
- Strip binary
2014-05-26 20:23:16 +00:00

17 lines
288 B
Bash

#!/bin/sh
#
# $FreeBSD$
[ "$2" != "POST-DEINSTALL" ] && exit 0
if [ -s "%%SCOREFILE%%" ]; then
echo
echo "To completely remove the port, please remove the following"
echo "file manually, if it's no longer needed:"
echo
echo " %%SCOREFILE%%"
echo
else
rm -f "%%SCOREFILE%%"
fi