This takes optional named parameters. Without parameters, this searches
for all the installed .packlists on the system using information from
%Config::Config and the default module search
paths @INC. The packlists are read using the
ExtUtils::Packlist module.
If the named parameter
"skip_cwd" is true, the current
directory "." will be stripped from
@INC before searching for .packlists. This keeps
ExtUtils::Installed from finding modules installed in other perls that
happen to be located below the current directory.
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);
Note: You probably do not want to use these options
alone, almost always you will want to set both together.
The parameter "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.
Finally there is the 'default', and the related 'default_get'
and 'default_set' options. These options control the "default"
object which is provided by the class interface to the methods. Setting
"default_get" to true tells the
constructor to return the default object if it is defined. Setting
"default_set" to true tells the
constructor to make the default object the constructed object. Setting
the "default" option is like setting
both to true. This is used primarily internally and probably isn't
interesting to any real user.