in reply to How to include CPAN packages in distribution package
Which basically says that Test::Differences requires Text::Diff in version 0.34 (or higher).use ExtUtils::MakeMaker; WriteMakefile( NAME => "Test::Differences", VERSION_FROM => "Differences.pm", PREREQ_PM => { "Text::Diff" => 0.34, }, );
See the ExtUtils::MakeMaker documentation for more information.
|
|---|