NAME

licenseScan.pl - This file is used to gather all CPAN licenses from third party dependencies.

DESCRIPTION

This file is used to gather all dependencies found within a cpanfile. Given an absolute path to a cpanfile, create a summary of all the distributions listed with their corresponding license. Also, create a directory structure containing all the licenses in the form of './licenses/<module name>-<module version>/LICENSE'

PERL CMDLINE EXAMPLE

$ perl LicenseScanner.pl `<cpanfile path>`

PERL MODULE EXAMPLE: ```perl

use Module::LicenseScanner qw(scan);

scan("root/path/to/cpanfile");

```

AUTHOR

Jake Mellichamp

LICENSE

GNU v3, Perl_5 license

INSTALLATION

Using cpanm:

$ cpanm LicenseScanner

Manual install:

$ perl Makefile.PL
$ make
$ make install