This is a guide to basic tasks in ExtUtils::MakeMaker. I wrote this because I keep forgetting how to do things.
use ExtUtils::MakeMaker; WriteMakefile ( PREREQ_PM => { "Some::Module" => 0, }, );
An inconsistency is that for modules required for building, one
uses BUILD_REQUIRES and for testing one
uses TEST_REQUIRES but for run-time requirements one
uses PREREQ_PM.