openbsd-ports/devel/p5-Module-ScanDeps/pkg/DESCR
2006-11-04 23:38:49 +00:00

11 lines
433 B
Plaintext

This module scans potential modules used by perl programs, and returns
a hash reference; its keys are the module names as appears in %INC
(e.g. Test/More.pm); the values are hash references with this structure:
{
file => '/usr/local/lib/perl5/5.8.0/Test/More.pm',
key => 'Test/More.pm',
type => 'module', # or 'autoload', 'data', 'shared'
used_by => [ 'Test/Simple.pm', ... ],
}