format selector list as item list
[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.010001;
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.010001",
18   "NAME" => "DOM::Tiny",
19   "PREREQ_PM" => {
20     "Carp" => 0,
21     "Exporter" => 0,
22     "List::Util" => 0,
23     "Scalar::Util" => 0
24   },
25   "TEST_REQUIRES" => {
26     "Encode" => 0,
27     "JSON::PP" => 0,
28     "Test::More" => "0.88"
29   },
30   "VERSION" => "0.002",
31   "test" => {
32     "TESTS" => "t/*.t"
33   }
34 );
35
36
37 my %FallbackPrereqs = (
38   "Carp" => 0,
39   "Encode" => 0,
40   "Exporter" => 0,
41   "JSON::PP" => 0,
42   "List::Util" => 0,
43   "Scalar::Util" => 0,
44   "Test::More" => "0.88"
45 );
46
47
48 unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
49   delete $WriteMakefileArgs{TEST_REQUIRES};
50   delete $WriteMakefileArgs{BUILD_REQUIRES};
51   $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
52 }
53
54 delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
55   unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
56
57 WriteMakefile(%WriteMakefileArgs);