bf2c4bc9d1
MAKE_FLAGS/ALL_TARGET - rename patches - store the score file in /var/games instead of ${PREFIX}/lib/connect4 - add proper INSTALL/DEINSTALL scripts to setup the score file and to remind to remove it on deinstallation.
26 lines
591 B
Bash
26 lines
591 B
Bash
#!/bin/sh
|
|
# $OpenBSD: DEINSTALL,v 1.1 2001/08/11 03:17:12 brad Exp $
|
|
#
|
|
# connect4 de-installation
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
SCORE_FILE=/var/games/connect4.scores
|
|
|
|
if [ -f $SCORE_FILE ]; then
|
|
echo
|
|
echo "+---------------"
|
|
echo "| To completely deinstall the $1 package you need to perform"
|
|
echo "| this step as root:"
|
|
echo "|"
|
|
echo "| rm -f $SCORE_FILE"
|
|
echo "|"
|
|
echo "| Do not do this if you plan on re-installing $1"
|
|
echo "| at some future time."
|
|
echo "+---------------"
|
|
echo
|
|
fi
|
|
|
|
exit 0
|