Tests require recent version of File::Spec::Functions
[mafia.git] / Makefile.PL
CommitLineData
78e7a059 1use 5.010001;
f1171346
MG
2use ExtUtils::MakeMaker;
3
78e7a059
MG
4my $has_tr = $ExtUtils::MakeMaker::VERSION >= 6.64;
5
f1171346 6WriteMakefile(
40af1ba2
MG
7 NAME => 'Mafia',
8 VERSION_FROM => 'lib/Mafia.pm',
f1171346
MG
9 ABSTRACT_FROM => 'lib/Mafia.pm',
10 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
76b92037 11 MIN_PERL_VERSION => '5.10.1',
f1171346 12 LICENSE => 'perl',
8123f08c 13 SIGN => 1,
78e7a059
MG
14 (TEST_REQUIRES => {
15 qw/File::Spec::Functions 3.62/,
16 }) x $has_tr,
17 (PREREQ_PM => {
18 qw/File::Spec::Functions 3.62/,
19 }) x !$has_tr,
8123f08c
MG
20 META_MERGE => {
21 dynamic_config => 0,
22 resources => {
07cf0f1b 23 repository => 'https://git.ieval.ro/?p=mafia.git',
f1171346 24 }
f1171346
MG
25 }
26);
This page took 0.011194 seconds and 4 git commands to generate.