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

inc::Module::Install::DSL - Domain Specific Language for Module::Install

Authors

       Adam Kennedy <adamk@cpan.org>

Description

       One of the primary design goals of Module::Install is to simplify the creation of Makefile.PL scripts.

       Part of this involves the gradual reduction of any and all superfluous characters, with the ultimate goal
       of requiring no non-critical information in the file.

       Module::Install::DSL is a simple DomainSpecificLanguage based on the already-lightweight
       Module::Install command syntax.

       The DSL takes one command on each line, and then wraps the command (and its parameters) with the normal
       quotes and semi-colons etc to turn it into Perl code.

Name

       inc::Module::Install::DSL - Domain Specific Language for Module::Install

Support

       Bugs should be reported via the CPAN bug tracker at

       <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Module-Install>

       For other issues contact the author.

Synopsis

         use inc::Module::Install::DSL 0.80;

         all_from       lib/ADAMK/Repository.pm
         requires       File::Spec            3.29
         requires       File::pushd           1.00
         requires       File::Find::Rule      0.30
         requires       File::Find::Rule::VCS 1.05
         requires       File::Flat            0
         requires       File::Remove          1.42
         requires       IPC::Run3             0.034
         requires       Object::Tiny          1.06
         requires       Params::Util          0.35
         requires       CPAN::Version         5.5
         test_requires  Test::More            0.86
         test_requires  Test::Deep            1.03
         install_script adamk

         requires_external_bin svn

See Also