-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.PL
More file actions
82 lines (73 loc) · 1.91 KB
/
Makefile.PL
File metadata and controls
82 lines (73 loc) · 1.91 KB
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.005.
use strict;
use warnings;
use 5.014;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "Run commands on a bunch of git repositories without having to deal with git subrepositories.",
"AUTHOR" => "Alastair McGowan-Douglas <altreus\@perl.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "App-Multigit",
"EXE_FILES" => [
"script/mg",
"script/mg-each",
"script/mg-env",
"script/mg-grep",
"script/mg-init",
"script/mg-root",
"script/mg-st"
],
"LICENSE" => "artistic_2",
"MIN_PERL_VERSION" => "5.014",
"NAME" => "App::Multigit",
"PREREQ_PM" => {
"Capture::Tiny" => 0,
"Config::INI" => "0.025",
"Cwd" => "3.47",
"File::Find::Rule" => 0,
"File::Which" => "1.09",
"Future" => "0.3",
"Getopt::Long" => "2.42",
"HTTP::Tiny" => 0,
"IO::Async" => "0.67",
"IPC::Run" => 0,
"List::UtilsBy" => "0.09",
"Moo" => "2.000001",
"Path::Class" => "0.35",
"Pod::Usage" => 0,
"Try::Tiny" => "0.22",
"curry" => 1
},
"VERSION" => "0.18",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Capture::Tiny" => 0,
"Config::INI" => "0.025",
"Cwd" => "3.47",
"File::Find::Rule" => 0,
"File::Which" => "1.09",
"Future" => "0.3",
"Getopt::Long" => "2.42",
"HTTP::Tiny" => 0,
"IO::Async" => "0.67",
"IPC::Run" => 0,
"List::UtilsBy" => "0.09",
"Moo" => "2.000001",
"Path::Class" => "0.35",
"Pod::Usage" => 0,
"Try::Tiny" => "0.22",
"curry" => 1
);
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);