mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
6359b9a527
11 special levels. PR: ports/76484 Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
12 lines
213 B
Bash
12 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
|