|  |  
 |   |   
 NAMEModule::Build::Prereqs::FromCPANfile - construct prereq parameters of Module::Build from cpanfile SYNOPSIS    use Module::Build;
    use Module::Build::Prereqs::FromCPANfile;
    
    Module::Build->new(
        ...,
        mb_prereqs_from_cpanfile()
    )->create_build_script();
DESCRIPTIONThis simple module reads cpanfile and converts its content into valid prereq parameters for new() method of Module::Build. Currently it does not support "optional features" specification (See "feature" in cpanfile). EXPORTED FUNCTIONThe following function is exported by default. %prereq_params = mb_prereqs_from_cpanfile(%args)Reads cpanfile, parses its content and returns corresponding %prereq_params for Module::Build. Fields in %args are: 
 SEE ALSO
 REPOSITORY<https://github.com/debug-ito/Module-Build-Prereqs-FromCPANfile> BUGS AND FEATURE REQUESTSPlease report bugs and feature requests to my Github issues <https://github.com/debug-ito/Module-Build-Prereqs-FromCPANfile/issues>. Although I prefer Github, non-Github users can use CPAN RT <https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Build-Prereqs-FromCPANfile>. Please send email to "bug-Module-Build-Prereqs-FromCPANfile at rt.cpan.org" to report bugs if you do not have CPAN RT account. AUTHORToshio Ito, "<toshioito at cpan.org>" LICENSE AND COPYRIGHTCopyright 2014 Toshio Ito. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See <http://dev.perl.org/licenses/> for more information. 
 
 |