logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Module::Build::Pluggable::CPANfile - Include cpanfile

Author

       Masahiro Nagano <kazeburo@gmail.com>

Description

       Module::Build::Pluggable::CPANfile is plugin for Module::Build::Pluggable to include dependencies from
       cpanfile into meta files.  This modules is Module::Install::CPANfile for Module::Build

       THISISADEVELOPMENTRELEASE.APIMAYCHANGEWITHOUTNOTICE.

License

       Copyright (C) Masahiro Nagano

       This library is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself.

perl v5.34.0                                       2022-07-20             Module::Build::...gable::CPANfile(3pm)

Name

       Module::Build::Pluggable::CPANfile - Include cpanfile

See Also

       Module::Install::CPANfile, cpanfile, Module::Build::Pluggable

Synopsis

         # cpanfile
         requires 'Plack', 0.9;
         on test => sub {
             requires 'Test::Warn';
         };

         # Build.PL
         use Module::Build::Pluggable (
             'CPANfile'
         );

         my $builder = Module::Build::Pluggable->new(
               ... # normal M::B args. but not required prereqs
         );
         $builder->create_build_script();

See Also