From a9f3727141c51b5f5e61ca5b446c6a671d1e3c8a Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Thu, 25 Dec 2014 17:39:28 +0200 Subject: [PATCH] Replace dist.ini with traditional Makefile.PL --- Makefile.PL | 39 +++++++++++++++++++++++++++++++++++++++ dist.ini | 25 ------------------------- 2 files changed, 39 insertions(+), 25 deletions(-) create mode 100644 Makefile.PL delete mode 100644 dist.ini diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..60d6ffe --- /dev/null +++ b/Makefile.PL @@ -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 ', + 'Marius Gavrilescu ' + ], + 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 index 65cb38c..0000000 --- a/dist.ini +++ /dev/null @@ -1,25 +0,0 @@ -name = HTML-Element-Library -author = Terrence Brannon -license = Perl_5 -copyright_holder = Terrence Brannon - - -[@Basic] - -[PkgVersion] - -[AutoVersion] -major = 5 - - - -[AutoPrereqs] - -skip = (Test::XML|Arsenal|SimpleClass|SelectData|TestUtils|data::table2) - - - -[TestRelease] -[ConfirmRelease] - - -- 2.30.2