#!/bin/sh

set -e

package=hugs-doc

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

# FHS transition
if [ -L /usr/doc/$package ]; then
   rm -f /usr/doc/$package
fi
