Subject: | Note the repository in the docs and/or metadata |
It would be nice if DateTime said where its repository and other bits
are in the docs and/or in the meta data. Here's what Test-Simple does:
my $mm_ver = $ExtUtils::MakeMaker::VERSION;
if ($mm_ver =~ /_/) { # dev version
$mm_ver = eval $mm_ver;
die $@ if $@;
}
And then as an argument to WriteMakefile...
($mm_ver <= 6.45 ? () : (META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
homepage => 'http://test-more.googlecode.com',
bugtracker => 'http://code.google.com/p/test-more/issues',
repository =>
'http://github.com/schwern/test-more/tree/master',
MailingList =>
'http://groups.google.com/group/test-more-users',
},
}))