1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/games/pachi/pkg-install

17 lines
334 B
Plaintext
Raw Normal View History

#!/bin/sh
#
# $FreeBSD$
SCOREDIR="/var/games/pachi"
SCOREFILE="/var/games/pachi/scores.dat"
[ "$2" != "POST-INSTALL" -o -f "$SCOREFILE" ] && exit 0
echo "Creating hiscore file..."
mkdir -p "$SCOREDIR"
# Empty scorefile seem to contain 170 zero bytes
truncate -s 170 "$SCOREFILE"
chgrp -R games "$SCOREDIR"
chmod g+w "$SCOREFILE"