1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00
freebsd-ports/games/urban/pkg-install
Edwin Groothuis 39bca21123 Update port: games/urban (fix high scores handling)
High scores were not saved when the game was installed from
	a package.

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

12 lines
212 B
Bash

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