#!/bin/sh # # $FreeBSD: ports/games/powermanga/pkg-install,v 1.2 2007/09/05 11:11:20 itetcu Exp $ 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