]> iEval git - html-element-library.git/blobdiff - Makefile.PL
Replace dist.ini with traditional Makefile.PL
[html-element-library.git] / Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..60d6ffe
--- /dev/null
@@ -0,0 +1,39 @@
+use ExtUtils::MakeMaker;
+use strict;
+use warnings;
+
+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/,
+       },
+       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 => 'http://git.ieval.ro/?p=html-element-library.git',
+               },
+       }
+);
This page took 0.022085 seconds and 4 git commands to generate.