-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile.PL
33 lines (31 loc) · 1007 Bytes
/
Makefile.PL
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
28
29
30
31
32
33
use strict;
use warnings;
use FindBin;
use lib $FindBin::Bin;
use ExtUtils::MakeMaker;
my $eumm_version = $ExtUtils::MakeMaker::VERSION;
WriteMakefile(
NAME => 'Number::Phone::JP',
VERSION_FROM => 'lib/Number/Phone/JP.pm',
ABSTRACT_FROM => 'lib/Number/Phone/JP.pm',
PREREQ_PM => +{
'Test::More' => 0,
'Test::Requires' => 0,
'UNIVERSAL::require' => 0,
'Number::Phone' => 0,
},
( $eumm_version >= 6.31 ? (LICENSE => 'perl_5') : () ),
( $eumm_version >= 6.46 ? (
META_MERGE => +{
resources => {
repository => +{
type => 'git',
web => 'https://github.com/nipotan/p5-Number-Phone-JP',
url => 'git://github.com/nipotan/p5-Number-Phone-JP.git',
},
x_twitter => 'https://twitter.com/nipotan',
},
}
) : ()
),
);