Bump version and update Changes
[html-element-library.git] / Makefile.PL
index fc8fbe3e385d82d369038c845784bcac06d9b924..16fc048d4708323bbcff91d57fc3ff5202cd3c07 100644 (file)
@@ -1,50 +1,40 @@
-use 5.006001;
 use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
-WriteMakefile(
-    NAME              => 'HTML::Element::Library',
-    VERSION_FROM      => 'lib/HTML/Element/Library.pm', # finds $VERSION
-    PREREQ_PM         => {
-      Array::Group          => 1.00,
-
-      File::Slurp           => 9999.06,
-
-      HTML::PrettyPrinter   => 0.03,
-      HTML::Tree            => 3.19,
-
-      List::Rotation::Cycle => 1.003,
-      List::MoreUtils       => 0.09,
+use strict;
+use warnings;
 
-      Params::Validate      => 0.80,
-
-      Scalar::Listify       => 0.02,
-    }, 
-    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
-      (ABSTRACT_FROM  => 'lib/HTML/Element/Library.pm', # retrieve abstract from module
-       AUTHOR         => 'Terrence Brannon <terry@hcoop.net>') : ()),
+WriteMakefile(
+       NAME             => 'HTML::Element::Library',
+       VERSION_FROM     => 'lib/HTML/Element/Library.pm',
+       ABSTRACT_FROM    => 'lib/HTML/Element/Library.pm',
+       AUTHOR           => [
+               'Terrence Brannon <metaperl@gmail.com>',
+               'Marius Gavrilescu <marius@ieval.ro>'
+       ],
+       MIN_PERL_VERSION => '5.6.0',
+       LICENSE          => 'perl',
+       SIGN             => 1,
+       BUILD_REQUIRES   => {
+               qw/File::Slurp         0
+                  HTML::PrettyPrinter 0
+                  HTML::TreeBuilder   0
+                  Test::More          0
+                  Test::XML           0/,
+       },
+       PREREQ_PM        => {
+               qw/Array::Group          0
+                  Data::Rmap            0
+                  HTML::Element         0
+                  HTML::FillInForm      0
+                  List::MoreUtils       0
+                  List::Rotation::Cycle 0
+                  List::Util            0
+                  Params::Validate      0
+                  Scalar::Listify       0/,
+       },
+       META_MERGE         => {
+               dynamic_config => 0,
+               resources      => {
+                       repository => 'https://git.ieval.ro/?p=html-element-library.git',
+               },
+       }
 );
-
-sub MY::postamble { q{
-
-cleandist: FORCE
-       make again; make cleanmanifest; make docs; make dist
-
-again: FORCE
-       make clean; perl Makefile.PL; make pm_to_blib
-
-cleanmanifest: realclean FORCE
-       rm MANIFEST ; perl Makefile.PL; touch MANIFEST; make manifest
-
-%.t: pm_to_blib FORCE
-       make; perl -Iblib/lib $@
-
-docs : README CHANGES
-
-README: lib/HTML/Element/Library.pm
-       pod2text lib/HTML/Element/Library.pm > README
-
-CHANGES: lib/HTML/Element/Library/Changes.pod
-       pod2text lib/HTML/Element/Library/Changes.pod > CHANGES
-
-}; }
This page took 0.010053 seconds and 4 git commands to generate.