postinst is in chameleon-cursor-theme 0.5-5.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #! /bin/sh
# postinst script for chameleon-cursor-theme
# (based on postinst of comixcursors by Sune Vuorela)
set -e
TARGET=/usr/share/icons/default/index.theme
ICONDIR=/usr/share/icons
CHOSEN=Chameleon-Pearl-Large/cursor.theme
PRIORITY1=50
PRIORITY2=49
case "$1" in
    configure)
	for theme in `find "$ICONDIR" -regex '.*Chameleon-\(Anthracite\|DarkSkyBlue\|Pearl\|White\|SkyBlue\)-.*theme$'`; do
	    if [ "$theme" = "$ICONDIR/$CHOSEN" ];then
	    	update-alternatives --install "$TARGET" x-cursor-theme "$theme" $PRIORITY1
	    else
	        update-alternatives --install "$TARGET" x-cursor-theme "$theme" $PRIORITY2
	    fi
	done
    ;;
    abort-upgrade|abort-remove|abort-deconfigure)
    ;;
    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac
exit 0
 |