aboutsummaryrefslogtreecommitdiffstats
path: root/games/warsow-data/pkg-deinstall
blob: c5cdbfc55479f31e2350db70a57c4d56aca8a1b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

case $2 in
    DEINSTALL)
        config_file=$PKG_PREFIX/share/warsow/config.cfg

        if [ -e $config_file ] && ! [ -s $config_file ]; then
            rm -f $config_file
        fi
        ;;

    POST-DEINSTALL)
        rmdir $PKG_PREFIX/share/warsow 2>/dev/null || true
        ;;
esac