switch installer to EUMM
[catagits/DOM-Tiny.git] / Makefile.PL
1 # This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.041.
2 use strict;
3 use warnings;
4
5 use 5.008001;
6
7 use ExtUtils::MakeMaker;
8
9 my %WriteMakefileArgs = (
10   "ABSTRACT" => "Minimalistic HTML/XML DOM parser with CSS selectors",
11   "AUTHOR" => "Dan Book <dbook\@cpan.org>",
12   "CONFIGURE_REQUIRES" => {
13     "ExtUtils::MakeMaker" => 0
14   },
15   "DISTNAME" => "DOM-Tiny",
16   "LICENSE" => "artistic_2",
17   "MIN_PERL_VERSION" => "5.008001",
18   "NAME" => "DOM::Tiny",
19   "PREREQ_PM" => {
20     "Carp" => 0,
21     "Class::Tiny::Chained" => 0,
22     "Exporter" => 0,
23     "List::Util" => 0,
24     "Scalar::Util" => 0
25   },
26   "TEST_REQUIRES" => {
27     "Encode" => 0,
28     "JSON::Tiny" => "0.41",
29     "Test::More" => "0.88"
30   },
31   "VERSION" => "0.001",
32   "test" => {
33     "TESTS" => "t/*.t"
34   }
35 );
36
37
38 my %FallbackPrereqs = (
39   "Carp" => 0,
40   "Class::Tiny::Chained" => 0,
41   "Encode" => 0,
42   "Exporter" => 0,
43   "JSON::Tiny" => "0.41",
44   "List::Util" => 0,
45   "Scalar::Util" => 0,
46   "Test::More" => "0.88"
47 );
48
49
50 unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
51   delete $WriteMakefileArgs{TEST_REQUIRES};
52   delete $WriteMakefileArgs{BUILD_REQUIRES};
53   $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
54 }
55
56 delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
57   unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
58
59 WriteMakefile(%WriteMakefileArgs);