php-src/pear/scripts/pearcmd-uninstall.php
Stig Bakken 615f110d4e * modularize "pear" and "pear-get" commands somewhat. checking options
etc. is done for both in pearcmd-common.php.
2002-01-30 12:20:12 +00:00

27 lines
671 B
PHP

<?php
include_once 'PEAR/Installer.php';
$pkgfile = $cmdargs[0];
$installer =& new PEAR_Installer($script_dir, $ext_dir, $doc_dir);
$installer->setErrorHandling(PEAR_ERROR_DIE,
basename($pkgfile) . ": %s\n");
$installer->debug = $verbose;
$uninstall_options = array();
foreach ($cmdopts as $opt) {
switch ($opt[0]) {
case 'r':
$uninstall_options['register_only'] = true;
break;
case 'f':
$uninstall_options['force'] = true;
break;
}
}
if ($installer->uninstall($pkgfile, $uninstall_options)) {
print "uninstall ok\n";
} else {
print "uninstall failed\n";
}
?>