Replace dist.ini with traditional Makefile.PL
authorMarius Gavrilescu <marius@ieval.ro>
Thu, 25 Dec 2014 15:39:28 +0000 (17:39 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 27 Dec 2014 08:59:13 +0000 (10:59 +0200)
Makefile.PL [new file with mode: 0644]
dist.ini [deleted file]

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',
+               },
+       }
+);
diff --git a/dist.ini b/dist.ini
deleted file mode 100644 (file)
index 65cb38c..0000000
--- a/dist.ini
+++ /dev/null
@@ -1,25 +0,0 @@
-name = HTML-Element-Library
-author = Terrence Brannon <metaperl@gmail.com>
-license = Perl_5
-copyright_holder = Terrence Brannon
-
-
-[@Basic]
-
-[PkgVersion]
-
-[AutoVersion]
-major = 5
-
-
-
-[AutoPrereqs]
-
-skip = (Test::XML|Arsenal|SimpleClass|SelectData|TestUtils|data::table2)
-
-
-
-[TestRelease]
-[ConfirmRelease]
-
-
This page took 0.010824 seconds and 4 git commands to generate.