1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
freebsd-ports/games/sokoban/pkg-install

10 lines
219 B
Plaintext
Raw Normal View History

#!/bin/sh
FILE="/var/games/sokoban"
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
echo "===> Creating initial high score file $FILE"
dd if=/dev/zero of=$FILE bs=1 count=2
chmod 664 $FILE
chown root.games $FILE