freebsd-ports/games/lexter/pkg-install
Michael Haro af16ac47a0 add forgotten file
Reminded by: maintainer
2001-03-30 02:48:10 +00:00

10 lines
199 B
Bash

#!/bin/sh
FILE="/var/games/lexter.scores"
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
echo "===> Creating initial high score file $FILE"
touch $FILE
chown root.games $FILE
chmod 664 $FILE