freebsd-ports/games/atomix/pkg-install

14 lines
351 B
Text
Raw Normal View History

2005-08-28 09:58:46 +02:00
#!/bin/sh
if [ "$2" = "POST-INSTALL" ]; then
mkdir -p ${PKG_PREFIX}/share/games
2005-08-28 09:58:46 +02:00
SCORES="atomix.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 0664 ${PKG_PREFIX}/share/games/${i}
2005-08-28 09:58:46 +02:00
fi
done
fi