update_icons() {

	# Setup MIME types
	if which update-mime-database
	then
		update-mime-database /usr/share/mime >/dev/null
	fi

}

post_install() {
	update_icons
}

post_upgrade() {
	update_icons
}

post_remove() {
	update_icons
}
 
