added some meta

This commit is contained in:
git@daemon.de
2016-03-14 08:35:06 +01:00
parent c062fee463
commit 71239e46ee

View File

@@ -20,7 +20,7 @@ foreach my $module (sort keys %optional) {
}
WriteMakefile(
my %params = (
'NAME' => 'Crypt::PWSafe3',
'VERSION_FROM' => 'lib/Crypt/PWSafe3.pm',
'PREREQ_PM' => { 'Digest::HMAC' => 1.00,
@@ -38,6 +38,17 @@ WriteMakefile(
FILES => 't/*.out *~ */*~ */*/*~ */*/*/*~'
},
($ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE' => 'perl', ) : ()),
);
if ( $ExtUtils::MakeMaker::VERSION ge '6.46' ) {
$params{META_MERGE} = {
resources => {
homepage => 'http://www.daemon.de/',
bugtracker => 'http://github.com/tlinden/Crypt--PWSafe3',
license => 'http://www.perlfoundation.org/artistic_license_2_0',
repository => 'git://github.com/tlinden/Crypt--PWSafe3.git',
}
};
}
WriteMakefile( %params );