aboutsummaryrefslogtreecommitdiffstats
path: root/games/atomix/pkg-deinstall
blob: 7b662cd79ab242492f7e44b3b81e79f590a2a01d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if [ "$2" = "POST-DEINSTALL" ]; then
    GAMES=${PKG_PREFIX}/share/games
    SCORES=${GAMES}/atomix.scores
    if [ -f ${SCORES} ]; then
        if [ ! -s ${SCORES} ]; then
            rm -f ${SCORES}
            rmdir ${GAMES} > /dev/null 2>&1 || :
        fi
    fi
fi