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
|
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'HTML::CalendarMonthSimple',
ABSTRACT_FROM => 'lib/HTML/CalendarMonthSimple.pm',
VERSION_FROM => 'lib/HTML/CalendarMonthSimple.pm',
AUTHOR => 'Michael R. Davis - MRDVT',
PREREQ_PM => {
'Test::Simple' => 0.44,
'Date::Calc' => 0,
},
'META_MERGE' => {
'meta-spec' => {
'version' => 2
},
'resources' => {
'repository' => {
'url' => 'git@github.com:mrdvt92/perl-HTML-CalendarMonthSimple.git',
'web' => 'https://github.com/mrdvt92/perl-HTML-CalendarMonthSimple.git',
'type' => 'git'
},
'homepage' => 'https://github.com/mrdvt92/perl-HTML-CalendarMonthSimple',
'bugtracker' => {
'web' => 'https://github.com/mrdvt92/perl-HTML-CalendarMonthSimple/issues'
}
}
},
);
|