forked from miyagawa/cpanminus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
83 lines (66 loc) · 1.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
use strict;
use warnings;
use ExtUtils::MakeMaker 6.30;
# perl Makefile.PL (from git repo) copies 'cpanm' -> 'bin/cpanm'
if (-e 'cpanm') {
print STDERR "Generating bin/cpanm from cpanm\n";
open my $in, "<cpanm" or die $!;
open my $out, ">bin/cpanm" or die $!;
while (<$in>) {
s|^#!/usr/bin/env perl|#!perl|; # so MakeMaker can fix it
print $out $_;
}
}
my %WriteMakefileArgs = (
"ABSTRACT" => "get, unpack, build and install modules from CPAN",
"AUTHOR" => "- Tatsuhiko Miyagawa",
"BUILD_REQUIRES" => {},
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30"
},
"DISTNAME" => "App-cpanminus",
"EXE_FILES" => [
"bin/cpanm"
],
"LICENSE" => "perl",
"NAME" => "App::cpanminus",
"PREREQ_PM" => {
"ExtUtils::Install" => "1.46",
"ExtUtils::MakeMaker" => "6.31",
"Module::Build" => "0.36"
},
"TEST_REQUIRES" => {
"Test::More" => 0
},
"VERSION" => "1.6922",
"test" => {
"TESTS" => "t/*.t"
}
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
my $tr = delete $WriteMakefileArgs{TEST_REQUIRES};
my $br = $WriteMakefileArgs{BUILD_REQUIRES};
for my $mod ( keys %$tr ) {
if ( exists $br->{$mod} ) {
$br->{$mod} = $tr->{$mod} if $tr->{$mod} > $br->{$mod};
}
else {
$br->{$mod} = $tr->{$mod};
}
}
}
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);