f56dd5cdc0
PR: 40589 Submitted by: verm@drunkmonk.net
7 lines
228 B
Bash
7 lines
228 B
Bash
#!/bin/sh
|
|
|
|
FILE=/var/games/lbreakout2.hscr
|
|
[ "$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/lbreakout2/empty.hscr $FILE
|