|
Posted by Darin McBride on July 10, 2008, 10:55 am
Please log in for more thread options
Ted Zlatanov wrote:
> % cat Makefile.PL
> use ExtUtils::MakeMaker;
> WriteMakefile(
> NAME => 'Lingua::Slavic::Numbers',
> VERSION_FROM => 'lib/Lingua/Slavic/Numbers.pm',
> PREREQ_PM => { 'List::Util' => 1, 'Regexp::Common' => 1,
> 'Lingua::BG::Numbers' => 0 }, ABSTRACT_FROM =>
> 'lib/Lingua/Slavic/Numbers.pm', AUTHOR => 'Ted Zlatanov
First, since Lingua::BG::Numbers is part of your distribution, you are not
PRErequiring them. So remove that (as you had earlier).
Second, check the perldoc for ExtUtils::MakeMaker. Check PMLIBDIRS and PM.
Finally, Module::Build is, in my experience, far easier to deal with. So
don't use the above to be an argument to leave M::B, but merely
informational in case you prefer going back to EU::MM.
|