freebsd-ports/games/super_methane_brothers/pkg-req
Martin Wilke 211a500ac7 - Update to 1.5.1
PR:		175043
Submitted by:	Ports Fury
2013-02-05 09:15:13 +00:00

16 lines
276 B
Bash

#!/bin/sh
SCOREFILE="/var/games/methane.scores"
if [ "x$2" = "xPOST-INSTALL" ]; then
mkdir -p /var/games
touch $SCOREFILE
chown root:games $SCOREFILE
chmod 664 $SCOREFILE
fi
if [ "x$2" = "xPOST-DEINSTALL" ]; then
if [ ! -s $SCOREFILE ]; then
rm -f $SCOREFILE
fi
fi