-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
64 lines (50 loc) · 1.32 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
use strict;
use warnings;
use ExtUtils::MakeMaker 6.31;
my %WriteMakefileArgs = (
'ABSTRACT' => 'the mildew Perl6 compiler',
'AUTHOR' => 'Pawel Murias <pawelmurias@gmail.com>, Daniel Ruoso <daniel@ruoso.com>',
'BUILD_REQUIRES' => {},
'CONFIGURE_REQUIRES' => {
'ExtUtils::MakeMaker' => '6.31'
},
'DISTNAME' => 'Mildew',
'EXE_FILES' => [
'bin/mildew'
],
'LICENSE' => 'artistic_2',
'NAME' => 'Mildew',
'PREREQ_PM' => {
'Bread::Board' => '0.13',
'Data::Dumper::Concise' => '1.200',
'Digest::MD4' => '0',
'File::Slurp' => '0',
'Forest::Tree' => '0.08',
'Graph::Easy' => '0.69',
'Moose' => '1.03',
'MooseX::Declare' => '0.33',
'Regexp::Grammars' => '1.002',
'STD' => '0.05',
'Set::Object' => '1.26',
'YAML::XS' => '0'
},
'VERSION' => '0.05',
'test' => {
'TESTS' => 't/*.t'
}
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
my $pp = $WriteMakefileArgs{PREREQ_PM};
for my $mod ( keys %$br ) {
if ( exists $pp->{$mod} ) {
$pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
}
else {
$pp->{$mod} = $br->{$mod};
}
}
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(%WriteMakefileArgs);