blob: c7cd8c7840eb07070c74aaee3e0d219f31e68063 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
#
# $FreeBSD$
#
# Remove package declaration from PEAR's registry.
if [ x$2 != xDEINSTALL ]; then
exit
fi
PACKAGE=%%PKG_NAME%%
PEAR=${PKG_PREFIX}/bin/pear
${PEAR} uninstall -r -n ${PACKAGE} || true
|