1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/games/greed/pkg-install

10 lines
194 B
Plaintext
Raw Normal View History

#!/bin/sh
FILE="/var/games/greed.hs"
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
echo "===> Creating initial high score file $FILE"
touch $FILE
chown root.games $FILE
chmod 664 $FILE