e7b81852c3
- Improve highscore file handling - Pass maintainership to games@ - Fix insallation from user - Strip binary
10 lines
172 B
Bash
10 lines
172 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
[ "$2" != "POST-INSTALL" ] && exit 0
|
|
[ -e "%%SCOREFILE%%" ] && exit 0
|
|
|
|
touch "%%SCOREFILE%%"
|
|
chgrp games "%%SCOREFILE%%"
|
|
chmod g+w "%%SCOREFILE%%"
|