1*e0c4386eSCy Schubert# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.012. 2*e0c4386eSCy Schubertuse strict; 3*e0c4386eSCy Schubertuse warnings; 4*e0c4386eSCy Schubert 5*e0c4386eSCy Schubertuse 5.008; 6*e0c4386eSCy Schubert 7*e0c4386eSCy Schubertuse ExtUtils::MakeMaker; 8*e0c4386eSCy Schubert 9*e0c4386eSCy Schubertmy %WriteMakefileArgs = ( 10*e0c4386eSCy Schubert "ABSTRACT" => "Expand template text with embedded Perl", 11*e0c4386eSCy Schubert "AUTHOR" => "Michael Schout <mschout\@cpan.org>", 12*e0c4386eSCy Schubert "CONFIGURE_REQUIRES" => { 13*e0c4386eSCy Schubert "ExtUtils::MakeMaker" => 0 14*e0c4386eSCy Schubert }, 15*e0c4386eSCy Schubert "DISTNAME" => "Text-Template", 16*e0c4386eSCy Schubert "LICENSE" => "perl", 17*e0c4386eSCy Schubert "MIN_PERL_VERSION" => "5.008", 18*e0c4386eSCy Schubert "NAME" => "Text::Template", 19*e0c4386eSCy Schubert "PREREQ_PM" => { 20*e0c4386eSCy Schubert "Carp" => 0, 21*e0c4386eSCy Schubert "Encode" => 0, 22*e0c4386eSCy Schubert "Exporter" => 0, 23*e0c4386eSCy Schubert "base" => 0, 24*e0c4386eSCy Schubert "strict" => 0, 25*e0c4386eSCy Schubert "warnings" => 0 26*e0c4386eSCy Schubert }, 27*e0c4386eSCy Schubert "TEST_REQUIRES" => { 28*e0c4386eSCy Schubert "File::Temp" => 0, 29*e0c4386eSCy Schubert "Safe" => 0, 30*e0c4386eSCy Schubert "Test::More" => 0, 31*e0c4386eSCy Schubert "Test::More::UTF8" => 0, 32*e0c4386eSCy Schubert "Test::Warnings" => 0, 33*e0c4386eSCy Schubert "lib" => 0, 34*e0c4386eSCy Schubert "utf8" => 0, 35*e0c4386eSCy Schubert "vars" => 0 36*e0c4386eSCy Schubert }, 37*e0c4386eSCy Schubert "VERSION" => "1.56", 38*e0c4386eSCy Schubert "test" => { 39*e0c4386eSCy Schubert "TESTS" => "t/*.t" 40*e0c4386eSCy Schubert } 41*e0c4386eSCy Schubert); 42*e0c4386eSCy Schubert 43*e0c4386eSCy Schubert 44*e0c4386eSCy Schubertmy %FallbackPrereqs = ( 45*e0c4386eSCy Schubert "Carp" => 0, 46*e0c4386eSCy Schubert "Encode" => 0, 47*e0c4386eSCy Schubert "Exporter" => 0, 48*e0c4386eSCy Schubert "File::Temp" => 0, 49*e0c4386eSCy Schubert "Safe" => 0, 50*e0c4386eSCy Schubert "Test::More" => 0, 51*e0c4386eSCy Schubert "Test::More::UTF8" => 0, 52*e0c4386eSCy Schubert "Test::Warnings" => 0, 53*e0c4386eSCy Schubert "base" => 0, 54*e0c4386eSCy Schubert "lib" => 0, 55*e0c4386eSCy Schubert "strict" => 0, 56*e0c4386eSCy Schubert "utf8" => 0, 57*e0c4386eSCy Schubert "vars" => 0, 58*e0c4386eSCy Schubert "warnings" => 0 59*e0c4386eSCy Schubert); 60*e0c4386eSCy Schubert 61*e0c4386eSCy Schubert 62*e0c4386eSCy Schubertunless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) { 63*e0c4386eSCy Schubert delete $WriteMakefileArgs{TEST_REQUIRES}; 64*e0c4386eSCy Schubert delete $WriteMakefileArgs{BUILD_REQUIRES}; 65*e0c4386eSCy Schubert $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs; 66*e0c4386eSCy Schubert} 67*e0c4386eSCy Schubert 68*e0c4386eSCy Schubertdelete $WriteMakefileArgs{CONFIGURE_REQUIRES} 69*e0c4386eSCy Schubert unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; 70*e0c4386eSCy Schubert 71*e0c4386eSCy SchubertWriteMakefile(%WriteMakefileArgs); 72