X-Git-Url: http://git.ieval.ro/?p=mafia.git;a=blobdiff_plain;f=Makefile.PL;h=f2bca8ced1b6d81f4b771ab26e11619ebf6d7bb5;hp=f78c2187c2cc53560b0e36a986ad273e4da147c6;hb=78e7a0594cc773f3af79a430d248116d388ba43d;hpb=76b9203782f6861f881a189e3fcfa6d55128eca1 diff --git a/Makefile.PL b/Makefile.PL index f78c218..f2bca8c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,8 @@ -use 5.014000; +use 5.010001; use ExtUtils::MakeMaker; +my $has_tr = $ExtUtils::MakeMaker::VERSION >= 6.64; + WriteMakefile( NAME => 'Mafia', VERSION_FROM => 'lib/Mafia.pm', @@ -9,10 +11,16 @@ WriteMakefile( MIN_PERL_VERSION => '5.10.1', LICENSE => 'perl', SIGN => 1, + (TEST_REQUIRES => { + qw/File::Spec::Functions 3.62/, + }) x $has_tr, + (PREREQ_PM => { + qw/File::Spec::Functions 3.62/, + }) x !$has_tr, META_MERGE => { dynamic_config => 0, resources => { - repository => 'http://git.ieval.ro/?p=mafia.git', + repository => 'https://git.ieval.ro/?p=mafia.git', } } );