#!/bin/sh
set -e

if [ -x /usr/bin/update-menus ] ; then update-menus ; fi

if [ "$1" = "configure" ]; then
	if [ -d /usr/doc -a ! -e /usr/doc/xconvers -a -d /usr/share/doc/xconvers ]; then
		ln -sf ../share/doc/xconvers /usr/doc/xconvers
	fi
fi
