#!/bin/sh
#
# Remove package declaration from PEAR's registry.

if [ x$2 != xDEINSTALL ]; then
    exit
fi

PACKAGE=horde/Horde_Mapi
PEAR=${PKG_PREFIX}/bin/pear

${PEAR} uninstall -r -n ${PACKAGE} || true
