1# This Makefile.PL for DateTime-Format-Builder was generated by
2# Dist::Zilla::Plugin::DROLSKY::MakeMaker 1.09
3# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.48.
4# Don't edit it but the dist.ini and plugins used to construct it.
5
6use strict;
7use warnings;
8
9use ExtUtils::MakeMaker;
10
11my %WriteMakefileArgs = (
12  "ABSTRACT" => "Create DateTime parser classes and objects.",
13  "AUTHOR" => "Dave Rolsky <autarch\@urth.org>, Iain Truskett <spoon\@cpan.org>",
14  "CONFIGURE_REQUIRES" => {
15    "ExtUtils::MakeMaker" => 0
16  },
17  "DISTNAME" => "DateTime-Format-Builder",
18  "LICENSE" => "artistic_2",
19  "NAME" => "DateTime::Format::Builder",
20  "PREREQ_PM" => {
21    "Carp" => 0,
22    "DateTime" => "1.00",
23    "DateTime::Format::Strptime" => "1.04",
24    "Params::Validate" => "0.72",
25    "Scalar::Util" => 0,
26    "parent" => 0,
27    "strict" => 0,
28    "warnings" => 0
29  },
30  "TEST_REQUIRES" => {
31    "ExtUtils::MakeMaker" => 0,
32    "File::Spec" => 0,
33    "Test::More" => "0.96",
34    "lib" => 0
35  },
36  "VERSION" => "0.83",
37  "test" => {
38    "TESTS" => "t/*.t"
39  }
40);
41
42my %FallbackPrereqs = (
43  "Carp" => 0,
44  "DateTime" => "1.00",
45  "DateTime::Format::Strptime" => "1.04",
46  "ExtUtils::MakeMaker" => 0,
47  "File::Spec" => 0,
48  "Params::Validate" => "0.72",
49  "Scalar::Util" => 0,
50  "Test::More" => "0.96",
51  "lib" => 0,
52  "parent" => 0,
53  "strict" => 0,
54  "warnings" => 0
55);
56
57unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {
58  delete $WriteMakefileArgs{TEST_REQUIRES};
59  delete $WriteMakefileArgs{BUILD_REQUIRES};
60  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
61}
62
63delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
64  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
65
66WriteMakefile(%WriteMakefileArgs);
67