From: John Napiorkowski Date: Tue, 25 Feb 2014 15:12:01 +0000 (-0600) Subject: replace Makefile.PL with dist.ini X-Git-Tag: 0.009009~1^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0767fbba4ed63925df8e5aeed172407a39b37ae5;hp=44c29eb697a868677632f4f222d9e8cdef0df0cb;p=catagits%2FHTML-Zoom.git replace Makefile.PL with dist.ini --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..0dc20df --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,13 @@ +use strict; +use warnings FATAL => 'all'; +use 5.008001; +use ExtUtils::MakeMaker; + +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; + +WriteMakefile( + NAME => 'HTML-Zoom', + VERSION_FROM => 'lib/HTML/Zoom.pm', + PREREQ_PM => { strictures => 1, 'Test::More' => '0.88' }, + test => { TESTS => 't/*.t t/*/*.t' }, +); diff --git a/dist.ini b/dist.ini deleted file mode 100644 index 5bdb988..0000000 --- a/dist.ini +++ /dev/null @@ -1,11 +0,0 @@ -name = HTML-Zoom -version = 0.009008_01 -author = Matt S. Trout -license = Perl_5 -copyright_holder = Matt S. Trout - -[@Basic] - -[Prereqs] -strictures = 0 -Test::More = 0