-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.PL
86 lines (71 loc) · 1.92 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
81
82
83
84
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.014.
use strict;
use warnings;
use 5.008001;
use ExtUtils::MakeMaker 6.30;
use File::ShareDir::Install;
install_share dist => "share";
my %WriteMakefileArgs = (
"ABSTRACT" => "plackup core",
"AUTHOR" => "Tatsuhiko Miyagawa",
"BUILD_REQUIRES" => {},
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30",
"File::ShareDir::Install" => "0.03"
},
"DISTNAME" => "Plack-Runner",
"EXE_FILES" => [
"script/plackup"
],
"LICENSE" => "perl",
"NAME" => "Plack::Runner",
"PREREQ_PM" => {
"File::ShareDir" => "1.00",
"HTTP::Body" => "1.06",
"HTTP::Message" => "5.814",
"HTTP::Tiny" => "0.034",
"Hash::MultiValue" => "0.05",
"Pod::Usage" => "1.36",
"Stream::Buffered" => "0.02",
"Test::TCP" => "2.00",
"Try::Tiny" => 0,
"URI" => "1.59",
"parent" => 0
},
"TEST_REQUIRES" => {
"Test::More" => "0.88",
"Test::Requires" => 0
},
"VERSION" => "1.0030",
"test" => {
"TESTS" => "t/*.t t/HTTP-Message-PSGI/*.t t/Plack-Loader/*.t t/Plack-Request/*.t t/Plack-Response/*.t t/Plack-Runner/*.t t/Plack-Test/*.t t/Plack-Util/*.t"
}
);
my %FallbackPrereqs = (
"File::ShareDir" => "1.00",
"HTTP::Body" => "1.06",
"HTTP::Message" => "5.814",
"HTTP::Tiny" => "0.034",
"Hash::MultiValue" => "0.05",
"Pod::Usage" => "1.36",
"Stream::Buffered" => "0.02",
"Test::More" => "0.88",
"Test::Requires" => 0,
"Test::TCP" => "2.00",
"Try::Tiny" => 0,
"URI" => "1.59",
"parent" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(%WriteMakefileArgs);
{
package
MY;
use File::ShareDir::Install qw(postamble);
}