mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
7464c85dd5
- Support CC/CFLAGS properly - Support ncurses USES macro - Stage support PR: 185341 Submitted by: Ports Fury
8 lines
233 B
Bash
8 lines
233 B
Bash
#!/bin/sh
|
|
|
|
FILE=/var/games/tornado.scores
|
|
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
|
|
|
|
echo "===> Creating initial high score file $FILE"
|
|
install -o root -g games -m 664 ${PKG_PREFIX}/share/tornado/tornado.scores.init $FILE
|