mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
16 lines
281 B
Plaintext
16 lines
281 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
SCOREDIR="/var/games"
|
||
|
SCOREBASE="/var/games/powermanga.hi"
|
||
|
|
||
|
[ "$2" != "POST-INSTALL" ] && exit 0
|
||
|
|
||
|
mkdir -p $SCOREDIR
|
||
|
|
||
|
for suffix in "-easy" "" "-hard"; do
|
||
|
file="$SCOREBASE$suffix"
|
||
|
[ ! -f $file ] && touch $file
|
||
|
chown root:games $file
|
||
|
chmod 664 $file
|
||
|
done
|