2003-12-31 18:58:45 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
2007-10-25 01:37:25 +02:00
|
|
|
mkdir -p ${PKG_PREFIX}/share/games
|
2004-12-01 21:52:14 +01:00
|
|
|
SCORES="gweled.easy.scores gweled.timed.scores"
|
2003-12-31 18:58:45 +01:00
|
|
|
for i in ${SCORES}; do
|
2007-10-25 01:37:25 +02:00
|
|
|
if [ ! -f ${PKG_PREFIX}/share/games/${i} ]; then
|
|
|
|
touch -f ${PKG_PREFIX}/share/games/${i}
|
|
|
|
chown games:games ${PKG_PREFIX}/share/games/${i}
|
|
|
|
chmod 0664 ${PKG_PREFIX}/share/games/${i}
|
2003-12-31 18:58:45 +01:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|