freebsd-ports/games/powermanga/pkg-install
Ion-Mihai Tetcu e7cd95a17f * Update to 0.90
* Pass maintainership to submitter
* Generally improve the port

PR:		ports/116096
Submitted by:	Dmitry Marakasov
2007-09-05 11:11:21 +00:00

18 lines
332 B
Bash

#!/bin/sh
#
# $FreeBSD$
SCOREDIR="/var/games"
SCOREBASE="/var/games/powermanga.hi"
[ "$2" != "POST-INSTALL" ] && exit 0
echo "Creating hiscore directory..."
mkdir -p $SCOREDIR
for suffix in "-easy" "" "-hard"; do
file="$SCOREBASE$suffix"
[ ! -f $file ] && touch $file
chown root:games $file
chmod 664 $file
done