-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
62 lines (48 loc) · 2.11 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
use strict;
use warnings;
use ExtUtils::MakeMaker 6.31;
my %WriteMakefileArgs = (
'test' => {
'TESTS' => 't/*.t'
},
'NAME' => 'Text::Snippet',
'DISTNAME' => 'Text-Snippet',
'CONFIGURE_REQUIRES' => {
'ExtUtils::MakeMaker' => '6.31'
},
'AUTHOR' => 'Brian Phillips <[email protected]>',
'BUILD_REQUIRES' => {
'Test::More' => '0',
'Test::Exception' => '0',
'File::Find' => '0',
'File::Temp' => '0',
'Data::Dumper' => '0'
},
'ABSTRACT' => 'TextMate-like snippet functionality',
'EXE_FILES' => [],
'VERSION' => '0.04',
'PREREQ_PM' => {
'List::Util' => '0',
'Scalar::Util' => '0',
'Text::Balanced' => '0',
'overload' => '0',
'Class::XSAccessor' => '0',
'Carp' => '0'
},
'LICENSE' => 'perl'
);
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);