This repository has been archived by the owner on Aug 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Makefile.PL
61 lines (52 loc) · 1.72 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
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.031.
use strict;
use warnings;
use 5.008001;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "Distribution with a rich set of tools built upon the Test2 framework.",
"AUTHOR" => "Chad Granum <exodist\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Test2-Suite",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.008001",
"NAME" => "Test2::Suite",
"PREREQ_PM" => {
"B" => 0,
"Carp" => 0,
"Data::Dumper" => 0,
"Exporter" => 0,
"Scalar::Util" => "1.13",
"Term::Table" => "0.013",
"Test2::API" => "1.302176",
"Time::HiRes" => 0,
"overload" => 0,
"utf8" => 0
},
"VERSION" => "0.000164",
"test" => {
"TESTS" => "t/*.t t/acceptance/*.t t/behavior/*.t t/modules/*.t t/modules/AsyncSubtest/*.t t/modules/AsyncSubtest/Event/*.t t/modules/Bundle/*.t t/modules/Compare/*.t t/modules/Plugin/*.t t/modules/Require/*.t t/modules/Tools/*.t t/modules/Tools/Test-Refcount/*.t t/modules/Util/*.t t/modules/Util/Table/*.t t/modules/Workflow/*.t t/modules/Workflow/Task/*.t t/regression/*.t"
}
);
my %FallbackPrereqs = (
"B" => 0,
"Carp" => 0,
"Data::Dumper" => 0,
"Exporter" => 0,
"Scalar::Util" => "1.13",
"Term::Table" => "0.013",
"Test2::API" => "1.302176",
"Time::HiRes" => 0,
"overload" => 0,
"utf8" => 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);