freebsd-ports/games/dodgindiamond2/pkg-install
Edwin Groothuis d58dc6c290 Update port: games/dodgindiamond2 (fix high scores handling)
High scores were not saved when the game was installed from
	a package: fixed.

PR:		ports/76559
Submitted by:	Jean-Yves Lefort <jylefort@brutele.be>
2005-01-22 09:42:14 +00:00

11 lines
211 B
Bash

#!/bin/sh
SCOREDIR="/var/games"
SCOREFILE="/var/games/dd2-hiscore"
[ "$2" != "POST-INSTALL" -o -f "$SCOREFILE" ] && exit 0
mkdir -p $SCOREDIR
touch $SCOREFILE
chown root:games $SCOREFILE
chmod 664 $SCOREFILE