freebsd-ports/games/tecnoballz/pkg-install
Pav Lucistnik 6359b9a527 TecnoballZs is a brick breaker (Arkanoid-like game) with 50 levels of game and
11 special levels.

PR:		ports/76484
Submitted by:	Jean-Yves Lefort <jylefort@brutele.be>
2005-01-20 22:43:06 +00:00

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