#!/bin/sh -e
if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/xconvers ]; then
  rm -f /usr/doc/xconvers
fi

if command -v install-docs >/dev/null 2>&1; then                                      
  install-docs -r xconvers                                                            
fi                                                                                    
