ExtUtils::Installed - Inventory management of installed modules |
ExtUtils::Installed - Inventory management of installed modules
use ExtUtils::Installed; my ($inst) = ExtUtils::Installed->new(); my (@modules) = $inst->modules(); my (@missing) = $inst->validate("DBI"); my $all_files = $inst->files("DBI"); my $files_below_usr_local = $inst->files("DBI", "all", "/usr/local"); my $all_dirs = $inst->directories("DBI"); my $dirs_below_usr_local = $inst->directory_tree("DBI", "prog"); my $packlist = $inst->packlist("DBI");
ExtUtils::Installed provides a standard way to find out what core and module files have been installed. It uses the information stored in .packlist files created during installation to provide this information. In addition it provides facilities to classify the installed files and to extract directory information from the .packlist files.
The new()
function searches for all the installed .packlists on the system, and
stores their contents. The .packlists can be queried with the functions
described below. Where it searches by default is determined by the settings found
in %Config::Config
, and what the value is of the PERL5LIB environment variable.
new()
%Config::Config
and the default module search
paths @INC
. The packlists are read using the
the ExtUtils::Packlist manpage module.
If the named parameter config_override
is specified,
it should be a reference to a hash which contains all information
usually found in %Config::Config
. For example, you can obtain
the configuration information for a separate perl installation and
pass that in.
my $yoda_cfg = get_fake_config('yoda'); my $yoda_inst = ExtUtils::Installed->new(config_override=>$yoda_cfg);
Similarly, the parameter inc_override
may be a reference to an
array which is used in place of the default module search paths
from @INC
.
use Config; my @dirs = split(/\Q$Config{path_sep}\E/, $ENV{PERL5LIB}); my $p5libs = ExtUtils::Installed->new(inc_override=>\@dirs);
The parameter c<extra_libs> can be used to specify additional paths to search for installed modules. For instance
my $installed = ExtUtils::Installed->new(extra_libs=>["/my/lib/path"]);
This should only be necessary if /my/lib/path
is not in PERL5LIB.
modules()
files()
directories()
directory_tree()
validate()
packlist()
version()
See the example in the ExtUtils::Packlist manpage.
Alan Burlison <Alan.Burlison@uk.sun.com>
ExtUtils::Installed - Inventory management of installed modules |