-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
33 lines (32 loc) · 972 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 5.008000;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Config::Processor',
VERSION_FROM => 'lib/Config/Processor.pm',
PREREQ_PM => {
'File::Spec' => '0',
'YAML::XS' => '0.41',
'Cpanel::JSON::XS' => '3.0104',
'Hash::Merge' => '0.299',
'Scalar::Util' => '0',
'Carp' => '0',
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64',
},
BUILD_REQUIRES => {
'Test::More' => 0.98,
'Test::Fatal' => '0.013',
},
META_MERGE => {
resources => {
homepage => 'https://github.com/iph0/Config-Processor',
bugtracker => 'https://github.com/iph0/Config-Processor/issues',
repository => 'https://github.com/iph0/Config-Processor',
license => 'http://dev.perl.org/licenses/',
},
},
ABSTRACT_FROM => 'lib/Config/Processor.pm',
AUTHOR => 'Eugene Ponizovsky <ponizovsky@gmail.com>',
LICENSE => 'perl',
);