-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
68 lines (65 loc) · 2.22 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
use 5.010;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'App::NDTools',
AUTHOR => 'Michael Samoglyadov <[email protected]>',
VERSION_FROM => 'lib/App/NDTools.pm',
ABSTRACT_FROM => 'lib/App/NDTools.pm',
LICENSE => 'gpl',
PL_FILES => {},
MIN_PERL_VERSION => 5.010,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Capture::Tiny' => 0,
'Cwd' => 0,
'Data::Dumper' => 0,
'JSON::PP' => 0, # required by YAML::XS
'Pod::Usage' => 1.60,
'Test::File::Contents' => 0.23,
'Test::More' => 0.94, # subtest support
'YAML::XS' => 0, # optional (lazy loaded)
},
EXE_FILES => [
'nddiff',
'ndpatch',
'ndproc',
'ndquery',
],
META_MERGE => {
resources => {
repository => 'https://github.com/mr-mixas/NDTools',
},
},
PREREQ_PM => {
'B' => 0,
'Digest::MD5' => 0,
'Encode' => 0,
'Encode::Locale' => 0,
'File::Basename' => 0,
'Getopt::Long' => 0,
'Hash::Merge' => 0,
'Hash::Merge::Extra' => 0.06,
'IPC::Run3' => 0,
'JSON' => 0,
'JSON::Patch' => 0.04,
'List::MoreUtils' => 0,
'Log::Log4Cli' => 0.21,
'Module::Find' => 0,
'Pod::Find' => 0,
'Pod::Usage' => 0,
'Scalar::Util' => 0,
'Storable' => 0,
'Struct::Diff' => 0.97,
'Struct::Diff::MergePatch' => 0.01,
'Struct::Path' => 0.83,
'Struct::Path::PerlStyle' => 0.90,
'Term::ANSIColor' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'App-NDTools-* cover_db' },
test => { TESTS => 't/*.t t/lib/*.t t/bin/*.t' },
);