summaryrefslogtreecommitdiff
path: root/pear/scripts/pearcmd-uninstall.php
blob: 18f4e41931692fd3c776a69032516a38d38d893a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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";
}

?>