mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
3699070f4d
- Convert USE_GMAKE to USES
16 lines
285 B
Bash
16 lines
285 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
STATEDIR="/var/games/ivan"
|
|
|
|
[ "$2" != "POST-INSTALL" -o -d "$SCOREDIR" ] && exit 0
|
|
|
|
echo "Creating state directory..."
|
|
|
|
mkdir -p "$STATEDIR"
|
|
touch "$STATEDIR/ivan-highscore.scores"
|
|
mkdir -p "$STATEDIR/Bones"
|
|
chgrp -R games "$STATEDIR"
|
|
chmod -R g+w "$STATEDIR"
|