#!/bin/sh # # $FreeBSD: head/games/powermanga/pkg-install 340719 2014-01-22 15:52:06Z mat $ 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