X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;fp=Makefile.PL;h=7c215942de21b3b5478746885c8299c693d7eced;hb=e5227dad64c9dd23a3712c31626208e3b85e4026;hp=0000000000000000000000000000000000000000;hpb=3187745294af04bb4f3ece751c5d947f373039e5;p=catagits%2FDOM-Tiny.git diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..7c21594 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,57 @@ +# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.041. +use strict; +use warnings; + +use 5.010001; + +use ExtUtils::MakeMaker; + +my %WriteMakefileArgs = ( + "ABSTRACT" => "Minimalistic HTML/XML DOM parser with CSS selectors", + "AUTHOR" => "Dan Book ", + "CONFIGURE_REQUIRES" => { + "ExtUtils::MakeMaker" => 0 + }, + "DISTNAME" => "DOM-Tiny", + "LICENSE" => "artistic_2", + "MIN_PERL_VERSION" => "5.010001", + "NAME" => "DOM::Tiny", + "PREREQ_PM" => { + "Carp" => 0, + "Exporter" => 0, + "List::Util" => 0, + "Scalar::Util" => 0 + }, + "TEST_REQUIRES" => { + "Encode" => 0, + "JSON::PP" => 0, + "Test::More" => "0.88" + }, + "VERSION" => "0.001", + "test" => { + "TESTS" => "t/*.t" + } +); + + +my %FallbackPrereqs = ( + "Carp" => 0, + "Encode" => 0, + "Exporter" => 0, + "JSON::PP" => 0, + "List::Util" => 0, + "Scalar::Util" => 0, + "Test::More" => "0.88" +); + + +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);