mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
4cd6a0eaf5
princess Ericia, prisoner in the secret citadel. The many floors are only composed of blocks: you can destroy them, move them or build them to climb the levels and fight monsters living in this tower. WWW: https://github.com/dusty141/TheSecretTower
19 lines
465 B
Bash
19 lines
465 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" = "POST-DEINSTALL" ]; then
|
|
echo ""
|
|
echo ""
|
|
echo "==============================================================================="
|
|
echo ""
|
|
echo "After deinstallation, some files may stay in %%DATADIR%%,"
|
|
echo "you can delete them with"
|
|
echo ""
|
|
echo " /bin/rm -fr %%DATADIR%%"
|
|
echo ""
|
|
echo "==============================================================================="
|
|
echo ""
|
|
fi
|