6359b9a527
11 special levels. PR: ports/76484 Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
11 lines
213 B
Bash
11 lines
213 B
Bash
#!/bin/sh
|
|
|
|
SCOREDIR="/var/games"
|
|
SCOREFILE="/var/games/tecnoballz.hi"
|
|
|
|
[ "$2" != "POST-INSTALL" -o -f "$SCOREFILE" ] && exit 0
|
|
|
|
mkdir -p $SCOREDIR
|
|
touch $SCOREFILE
|
|
chown root:games $SCOREFILE
|
|
chmod 664 $SCOREFILE
|