From a276db189a656a4cc5881a2ebc4cad3113685030 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 21 Jul 2015 13:23:57 +0000 Subject: File-Which-1.19 --- Makefile.PL | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Makefile.PL (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..0e26c0a --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,52 @@ +BEGIN { + unless(eval q{ use 5.006; 1}) { + print "Perl 5.006 or better required\n"; + exit; + } +} +# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.036. +use strict; +use warnings; + +use 5.006; + +use ExtUtils::MakeMaker; + +my %WriteMakefileArgs = ( + "ABSTRACT" => "Perl implementation of the which utility as an API", + "AUTHOR" => "Per Einar Ellefsen , Adam Kennedy , Graham Ollis ", + "CONFIGURE_REQUIRES" => { + "ExtUtils::MakeMaker" => 0 + }, + "DISTNAME" => "File-Which", + "EXE_FILES" => [], + "LICENSE" => "perl", + "MIN_PERL_VERSION" => "5.006", + "NAME" => "File::Which", + "PREREQ_PM" => {}, + "TEST_REQUIRES" => { + "Test::More" => "0.47" + }, + "VERSION" => "1.19", + "test" => { + "TESTS" => "t/*.t" + } +); + + +my %FallbackPrereqs = ( + "ExtUtils::MakeMaker" => 0, + "Test::More" => "0.47" +); + + +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); -- cgit v1.2.1