forked from Lainports/opnsense-ports
17 lines
427 B
Bash
17 lines
427 B
Bash
#!/bin/sh
|
|
|
|
PATH=/bin:/usr/bin:/usr/sbin
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
mkdir -p ${PKG_PREFIX}/share/games
|
|
SCORES="glines.Large.scores glines.Medium.scores glines.Small.scores"
|
|
for i in ${SCORES}; do
|
|
if [ ! -f ${PKG_PREFIX}/share/games/${i} ]; then
|
|
touch -f ${PKG_PREFIX}/share/games/${i}
|
|
chown games:games ${PKG_PREFIX}/share/games/${i}
|
|
chmod 0666 ${PKG_PREFIX}/share/games/${i}
|
|
fi
|
|
done
|
|
;;
|
|
esac
|