47 lines
856 B
Plaintext
47 lines
856 B
Plaintext
|
#!/bin/sh
|
||
|
# $OpenBSD: INSTALL,v 1.1 2001/08/11 03:17:12 brad Exp $
|
||
|
#
|
||
|
# Pre/post-installation setup of connect4
|
||
|
|
||
|
# exit on errors, use a sane path and install prefix
|
||
|
#
|
||
|
set -e
|
||
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
||
|
SCORE_FILE=/var/games/connect4.scores
|
||
|
|
||
|
# Function: install a blank file to be used as the connect4 score file
|
||
|
#
|
||
|
do_install()
|
||
|
{
|
||
|
touch $SCORE_FILE
|
||
|
chown root.games $SCORE_FILE
|
||
|
chmod 664 $SCORE_FILE
|
||
|
}
|
||
|
|
||
|
# verify proper execution
|
||
|
#
|
||
|
if [ $# -ne 2 ]; then
|
||
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# Verify/process the command
|
||
|
#
|
||
|
case $2 in
|
||
|
PRE-INSTALL)
|
||
|
: nothing to pre-install for this port
|
||
|
;;
|
||
|
POST-INSTALL)
|
||
|
if [ ! -f $SCORE_FILE ]; then
|
||
|
do_install $1
|
||
|
fi
|
||
|
;;
|
||
|
*)
|
||
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
exit 0
|