forked from deriv-com/perl-Date-Utility
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
55 lines (54 loc) · 1.78 KB
/
Makefile.PL
File metadata and controls
55 lines (54 loc) · 1.78 KB
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
use 5.010;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Date::Utility',
AUTHOR => q{Binary.com <support@binary.com>},
VERSION_FROM => 'lib/Date/Utility.pm',
ABSTRACT_FROM => 'lib/Date/Utility.pm',
LICENSE => 'artistic_2',
PL_FILES => {},
MIN_PERL_VERSION => 5.010,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'Test::NoWarnings' => 0,
'Test::Exception' => 0,
'Test::MockTime' => 0,
'Test::Most' => 0,
'Test::Perl::Critic' => 0,
},
PREREQ_PM => {
'Moose' => 0,
'DateTime' => 0,
'Carp' => 0,
'POSIX' => 0,
'Scalar::Util' => 0,
'Tie::Hash::LRU' => 0,
'Time::Local' => 0,
'Time::Piece' => 0,
'Try::Tiny' => 0,
'Time::Duration::Concise::Localize' => 2.5,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Date-Utility-*' },
(
eval { ExtUtils::MakeMaker->VERSION(6.46) }
? (
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/binary-com/perl-Date-Utility.git',
web => 'https://github.com/binary-com/perl-Date-Utility',
},
}
}
)
: ()
),
);