freebsd-ports/games/urban/pkg-install

12 lines
212 B
Text
Raw Normal View History

#!/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