freebsd-ports/games/powermanga/pkg-install

19 lines
344 B
Text
Raw Normal View History

#!/bin/sh
#
# $FreeBSD$
2013-10-19 02:56:58 +02:00
SCOREDIR="/var/games/powermanga"
SCOREBASE="${SCOREDIR}/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