in reply to Can ExtUtils::MakeMaker recommend to install optional modules?
This article sums up dependencies pretty well.
Here's how you specify recommended/suggested dependencies:
use ExtUtils::MakeMaker 6.64; WriteMakefile( # other stuff META_MERGE => { "meta-spec" => { version => 2 }, prereqs => { test => { recommends => { 'CPAN::Meta' => '2.120900', }, }, runtime => { recommends => { 'Text::CSV_XS' => 0, }, }, }, }, );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Can ExtUtils::MakeMaker recommend to install optional modules?
by 1nickt (Canon) on Dec 01, 2017 at 12:44 UTC | |
|
Re^2: Can ExtUtils::MakeMaker recommend to install optional modules?
by Anonymous Monk on Jan 13, 2018 at 13:27 UTC | |
by Dallaylaen (Chaplain) on Jan 13, 2018 at 16:02 UTC | |
by Anonymous Monk on Jan 13, 2018 at 19:22 UTC |