2011-06-22 10:53:29 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# Remove package declaration from PEAR's registry.
|
|
|
|
|
|
|
|
if [ x$2 != xDEINSTALL ]; then
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2011-07-07 14:17:05 +02:00
|
|
|
PACKAGE=%%PKG_NAME%%
|
2011-06-22 10:53:29 +02:00
|
|
|
PEAR=${PKG_PREFIX}/bin/pear
|
|
|
|
|
2011-07-07 14:17:05 +02:00
|
|
|
${PEAR} uninstall -r -n ${PACKAGE} || true
|