-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
45 lines (43 loc) · 1.26 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Data::Validate::TaxID',
AUTHOR => q{German Semenkov <german.semenkov@gmail.com>},
VERSION_FROM => 'lib/Data/Validate/TaxID.pm',
(
( defined( $ExtUtils::MakeMaker::VERSION ) && ( $ExtUtils::MakeMaker::VERSION >= 6.3002 ) )
? ('LICENSE'=> 'GPL')
: ()
),
PL_FILES => {},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
"Carp" => "1.22",
"Class::Load" => "0.09",
"Scalar::Util" => "0",
"strict" => "1.03",
"warnings" => "1.03",
},
TEST_REQUIRES => {
"Test::More" => "0.96",
"Test::Exception" => "0.05"
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Data-Validate-TaxID-*' },
META_MERGE => {
'meta-spec' => {
version => 2
},
resources => {
repository => {
type => 'git',
url => 'git://github.com/GermanS/Data-Validate-TaxID.git',
web => 'https://github.com/GermanS/Data-Validate-TaxID',
},
},
},
MIN_PERL_VERSION => '5.6.2' # Probably would work
);