mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
18 lines
526 B
Plaintext
18 lines
526 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
PATH=/bin:/usr/bin:/usr/sbin
|
||
|
|
||
|
case $2 in
|
||
|
POST-INSTALL)
|
||
|
mkdir -p ${PKG_PREFIX}/share/games
|
||
|
SCORES="gnibbles.1.0.scores gnibbles.1.1.scores gnibbles.2.0.scores gnibbles.2.1.scores gnibbles.3.0.scores gnibbles.3.1.scores gnibbles.4.0.scores gnibbles.4.1.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
|