blob: 425f21d8df17031ab18f0a1589522ce63cbbe2f1 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
FILE=/var/games/lmarbles.prfs
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
echo "===> Creating initial profile $FILE"
install -o root -g games -m 664 ${PKG_PREFIX}/share/lmarbles/empty.prfs $FILE
|