diff options
author | Michael Haro <mharo@FreeBSD.org> | 2001-03-30 02:48:10 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 2001-03-30 02:48:10 +0000 |
commit | af16ac47a0a1a9c0da354029d7d36fa4291c77b8 (patch) | |
tree | f7ce557efea2c25f4f81698647b9ce3d906c4a6c /games/lexter | |
parent | 195edbb96b3b532c8ca7990e01469c4c404514c0 (diff) | |
download | ports-af16ac47a0a1a9c0da354029d7d36fa4291c77b8.tar.gz ports-af16ac47a0a1a9c0da354029d7d36fa4291c77b8.zip |
add forgotten file
Reminded by: maintainer
Notes
Notes:
svn path=/head/; revision=40568
Diffstat (limited to 'games/lexter')
-rw-r--r-- | games/lexter/pkg-install | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/games/lexter/pkg-install b/games/lexter/pkg-install new file mode 100644 index 000000000000..a129bb39f13b --- /dev/null +++ b/games/lexter/pkg-install @@ -0,0 +1,9 @@ +#!/bin/sh + +FILE="/var/games/lexter.scores" +[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0 + +echo "===> Creating initial high score file $FILE" +touch $FILE +chown root.games $FILE +chmod 664 $FILE |