11 lines
232 B
Bash
11 lines
232 B
Bash
#!/bin/sh
|
|
#
|
|
# Remove package declaration from PEAR's registry.
|
|
|
|
if [ x$2 != xDEINSTALL ]; then
|
|
exit
|
|
fi
|
|
PKG_NAME=${1%%-[0-9._]*}
|
|
PACKAGE=$(echo $PKG_NAME | sed 's/pear-//')
|
|
|
|
${PKG_PREFIX}/bin/pear uninstall -r ${PACKAGE} || true
|