Subject: | configure_requires ExtUtils::PkgConfig |
If a prerequisite must be present at configuration time (for "perl
Build.PL"), the configure_requires thing should be used. This will write
the dependency into META.yml such that CPAN.pm or CPANPLUS will install
it before starting the usual mantra.
So you bascally only add
configure_requires => {
'ExtUtils::PkgConfig' => '1.03',
},
and make your users happy
Thanks,