-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile.PL
62 lines (58 loc) · 1.62 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
use 5.014;
use strict;
use warnings;
use ExtUtils::MakeMaker;
BEGIN {
eval "use File::ShareDir::Install;";
$@ and return 0;
}
use File::ShareDir::Install;
install_share dist => "share";
WriteMakefile(
NAME => 'Quant::Framework',
AUTHOR => q{Binary.com <[email protected]>},
VERSION_FROM => 'lib/Quant/Framework.pm',
ABSTRACT_FROM => 'lib/Quant/Framework.pm',
PL_FILES => {},
MIN_PERL_VERSION => 5.014,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Moose' => 0,
'YAML::XS' => 0,
'File::ShareDir' => 0,
'Test::More' => 0,
'Test::CheckManifest' => 1.29,
'Test::Exception' => 0,
'Test::MockModule' => 0,
'Test::MockObject::Extends' => 0,
'Test::NoWarnings' => 0,
'Date::Utility' => 0,
'Data::Chronicle::Writer' => 0,
'Data::Chronicle::Reader' => 0,
'Data::Chronicle::Mock' => 0,
},
PREREQ_PM => {
'Moose' => 0,
'YAML::XS' => 0,
'File::ShareDir' => 0,
'Math::Function::Interpolator', => 0,
'Date::Utility' => 0,
'Data::Chronicle::Writer' => 0,
'Data::Chronicle::Reader' => 0,
'Time::Duration::Concise' => 0,
'Memoize' => 0,
'Memoize::HashKey::Ignore' => 0,
'List::Util' => 0,
'List::MoreUtils' => 0,
'Carp' => 0,
'Digest::MD5' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Quant-Framework-*' },
);
{
package MY;
use File::ShareDir::Install qw(postamble);
}