1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#!/usr/bin/perl
use strict;
use warnings;
use 5.006;
use ExtUtils::MakeMaker;
WriteMakefile(
AUTHOR => 'Barbie <barbie@cpan.org>',
NAME => 'Template::Plugin::Lingua::EN::Inflect',
VERSION_FROM => 'lib/Template/Plugin/Lingua/EN/Inflect.pm',
ABSTRACT => 'TT2 interface to Lingua::EN::Inflect module',
NO_META => 1,
PREREQ_PM => {
# prereqs
'Template' => '2.07',
'Template::Plugin' => '2.07',
'Lingua::EN::Inflect' => '0',
# for testing
'IO::File' => 0,
'Template::Test' => 0,
'Test::More' => 0.70
},
);
|