-
Notifications
You must be signed in to change notification settings - Fork 33
/
Makefile.PL
129 lines (116 loc) · 3.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.011.
use strict;
use warnings;
use 5.010;
use ExtUtils::MakeMaker;
use File::ShareDir::Install;
$File::ShareDir::Install::INCLUDE_DOTFILES = 1;
$File::ShareDir::Install::INCLUDE_DOTDIRS = 1;
install_share dist => "share";
my %WriteMakefileArgs = (
"ABSTRACT" => "A static site generator",
"AUTHOR" => "Doug Bell <preaction\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::ShareDir::Install" => "0.06"
},
"DISTNAME" => "Statocles",
"EXE_FILES" => [
"bin/statocles"
],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.010",
"NAME" => "Statocles",
"PREREQ_PM" => {
"Beam::Emitter" => "0.007",
"Beam::Wire" => "1.018",
"DateTime::Moonpig" => 0,
"Encode" => 0,
"File::Share" => 0,
"Git::Repository" => 0,
"Import::Base" => "0.012",
"JSON::PP" => 0,
"List::UtilsBy" => "0.09",
"Mojolicious" => "6.54",
"Moo" => "2.000001",
"Path::Tiny" => "0.084",
"Pod::Simple" => "3.31",
"Pod::Usage::Return" => 0,
"Text::Markdown" => 0,
"Text::Unidecode" => 0,
"Type::Tiny" => 0,
"Types::Path::Tiny" => 0,
"YAML" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Capture::Tiny" => 0,
"Dir::Self" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Storable" => 0,
"Test::Deep" => 0,
"Test::Differences" => "0.64",
"Test::Exception" => "0.42",
"Test::Lib" => 0,
"Test::More" => "1.001005"
},
"VERSION" => "0.094",
"test" => {
"TESTS" => "t/*.t t/app/*.t t/app/basic/*.t t/app/blog/*.t t/app/perldoc/*.t t/app/role/*.t t/command/*.t t/deploy/*.t t/link/*.t t/page/*.t t/plugin/*.t t/template/*.t t/theme/*.t"
}
);
my %FallbackPrereqs = (
"Beam::Emitter" => "0.007",
"Beam::Wire" => "1.018",
"Capture::Tiny" => 0,
"DateTime::Moonpig" => 0,
"Dir::Self" => 0,
"Encode" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Share" => 0,
"File::Spec" => 0,
"Git::Repository" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Import::Base" => "0.012",
"JSON::PP" => 0,
"List::UtilsBy" => "0.09",
"Mojolicious" => "6.54",
"Moo" => "2.000001",
"Path::Tiny" => "0.084",
"Pod::Simple" => "3.31",
"Pod::Usage::Return" => 0,
"Storable" => 0,
"Test::Deep" => 0,
"Test::Differences" => "0.64",
"Test::Exception" => "0.42",
"Test::Lib" => 0,
"Test::More" => "1.001005",
"Text::Markdown" => 0,
"Text::Unidecode" => 0,
"Type::Tiny" => 0,
"Types::Path::Tiny" => 0,
"YAML" => 0,
"strict" => 0,
"warnings" => 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) };
if ( $^O eq 'darwin' ) {
$WriteMakefileArgs{PREREQ_PM}{'Mac::FSEvents'} = '0';
}
WriteMakefile(%WriteMakefileArgs);
{
package
MY;
use File::ShareDir::Install qw(postamble);
}