-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.PL
44 lines (40 loc) · 1.24 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
use 5.008000;
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $EUMM_VERSION = eval($ExtUtils::MakeMaker::VERSION);
sub eumm_ge ($$;$) {
my ($version, $true, $false) = @_;
return ($EUMM_VERSION >= $version) ? %$true : %{ $false || {} };
}
WriteMakefile(
NAME => 'Hash::Fold',
AUTHOR => q{chocolateboy <chocolate@cpan.org>},
VERSION_FROM => 'lib/Hash/Fold.pm',
ABSTRACT_FROM => 'lib/Hash/Fold.pm',
PL_FILES => {},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
'version' => '0.77',
},
BUILD_REQUIRES => {
'Test::More' => '1.302183',
'Test::Fatal' => '0.016',
},
PREREQ_PM => {
'Moo' => '2.004004',
'Sub::Exporter' => '0.987',
'Types::Standard' => '1.012001',
'Throwable::Error' => '0.200013',
},
eumm_ge(6.48, { MIN_PERL_VERSION => '5.8.0' }),
eumm_ge(6.31, { LICENSE => 'artistic_2' }),
eumm_ge(6.46, {
META_MERGE => {
resources => {
repository => 'https://github.com/chocolateboy/Hash-Fold',
bugtracker => 'https://github.com/chocolateboy/Hash-Fold/issues',
},
}
}),
);