-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
40 lines (39 loc) · 1.34 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
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'GDPR::IAB::TCFv2',
AUTHOR => 'Tiago Peczenyj <[email protected]>',
LICENSE => "perl_5",
ABSTRACT_FROM => 'lib/GDPR/IAB/TCFv2.pm',
VERSION_FROM => 'lib/GDPR/IAB/TCFv2.pm',
MIN_PERL_VERSION => 5.008,
TEST_REQUIRES => {
'Test::Exception' => 0.43,
'Test::More' => 0.94,
'Test::Pod' => 0,
},
( eval { ExtUtils::MakeMaker->VERSION(6.46) }
? ( META_MERGE => {
'meta-spec' => { version => 2 },
dynamic_config => 0,
resources => {
homepage => 'https://github.com/peczenyj/GDPR-IAB-TCFv2',
repository => {
type => 'git',
url =>
'https://github.com/peczenyj/GDPR-IAB-TCFv2.git',
web => 'https://github.com/peczenyj/GDPR-IAB-TCFv2',
},
bugtracker => {
web =>
'https://github.com/peczenyj/GDPR-IAB-TCFv2/issues'
},
},
recommends => {
'JSON' => 0,
},
x_authority => 'cpan:PACMAN',
}
)
: ()
),
);