-
Notifications
You must be signed in to change notification settings - Fork 17
/
Makefile.PL
82 lines (73 loc) · 2.07 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
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.024.
use strict;
use warnings;
use 5.014000;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "CPAN Artifact Repository Manager",
"AUTHOR" => "Tatsuhiko Miyagawa <miyagawa\@bulknews.net>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Carmel",
"EXE_FILES" => [
"script/carmel"
],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.014000",
"NAME" => "Carmel",
"PREREQ_PM" => {
"CPAN::Common::Index" => "0.006",
"CPAN::DistnameInfo" => 0,
"CPAN::Meta::Prereqs" => "2.132830",
"CPAN::Meta::Requirements" => "2.129",
"Carton" => "1.0.35",
"Class::Tiny" => "1.001",
"ExtUtils::Install" => "1.47",
"ExtUtils::InstallPaths" => 0,
"File::Copy::Recursive" => 0,
"File::pushd" => "1.009",
"JSON" => 0,
"Menlo::CLI::Compat" => "1.9018",
"Module::CPANfile" => "1.1000",
"Module::CoreList" => 0,
"Module::Metadata" => "1.000003",
"Module::Runtime" => "0.014",
"Path::Tiny" => "0.068",
"Try::Tiny" => "0.20"
},
"TEST_REQUIRES" => {
"Test::More" => "0.96"
},
"VERSION" => "v0.9.2",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"CPAN::DistnameInfo" => 0,
"CPAN::Meta::Requirements" => "2.129",
"Carton" => "1.0.35",
"Class::Tiny" => "1.001",
"ExtUtils::Install" => "1.47",
"ExtUtils::InstallPaths" => 0,
"File::Copy::Recursive" => 0,
"File::pushd" => "1.009",
"JSON" => 0,
"Menlo::CLI::Compat" => "1.9018",
"Module::CPANfile" => "1.1000",
"Module::CoreList" => 0,
"Module::Metadata" => "1.000003",
"Module::Runtime" => "0.014",
"Path::Tiny" => "0.068",
"Test::More" => "0.96",
"Try::Tiny" => "0.20"
);
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);