summaryrefslogtreecommitdiffstats
path: root/games/gnome-robots/pkg-install
blob: 6bec28e81d7ac9bd8c539ea814a5e0d330125e76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

PATH=/bin:/usr/bin:/usr/sbin

case $2 in
POST-INSTALL)
    mkdir -p ${PKG_PREFIX}/share/games
    SCORES="gnobots2.classic_robots-safe.scores gnobots2.classic_robots-super-safe.scores gnobots2.classic_robots.scores gnobots2.nightmare-safe.scores gnobots2.nightmare-super-safe.scores gnobots2.nightmare.scores gnobots2.robots2-safe.scores gnobots2.robots2-super-safe.scores gnobots2.robots2.scores gnobots2.robots2_easy-safe.scores gnobots2.robots2_easy-super-safe.scores gnobots2.robots2_easy.scores gnobots2.robots_with_safe_teleport-safe.scores gnobots2.robots_with_safe_teleport-super-safe.scores gnobots2.robots_with_safe_teleport.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