#! /bin/sh
# postrm script for crafty
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#        * <postrm> `remove'
#        * <postrm> `purge'
#        * <old-postrm> `upgrade' <new-version>
#        * <new-postrm> `failed-upgrade' <old-version>
#        * <new-postrm> `abort-install'
#        * <new-postrm> `abort-install' <old-version>
#        * <new-postrm> `abort-upgrade' <old-version>
#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
# for details, see /usr/doc/packaging-manual/

case "$1" in
       purge|disappear)

#Remove opening books
        rm -rf /var/lib/crafty/book.bin || true
        rm -rf /var/lib/crafty/books.bin || true
        ;;

	   abort-install|failed-upgrade|abort-upgrade)

#If install is aborted, then let the files where they were before install/upgrade
#(cancel the 'move' stuff started in preinst).
       if [ -d /var/lib/crafty -a -d /var/cache/crafty ]
	then rm -rf /var/lib/crafty
       fi
       ;;

       remove|upgrade)

        ;;
    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 0

esac

# dh_installdeb will replace next line with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#


