d58dc6c290
High scores were not saved when the game was installed from a package: fixed. PR: ports/76559 Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
11 lines
211 B
Bash
11 lines
211 B
Bash
#!/bin/sh
|
|
|
|
SCOREDIR="/var/games"
|
|
SCOREFILE="/var/games/dd2-hiscore"
|
|
|
|
[ "$2" != "POST-INSTALL" -o -f "$SCOREFILE" ] && exit 0
|
|
|
|
mkdir -p $SCOREDIR
|
|
touch $SCOREFILE
|
|
chown root:games $SCOREFILE
|
|
chmod 664 $SCOREFILE
|