X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=0dc20df75d47ae8744003dce424a2d6b25db3b31;hb=3959a04df063aa348d761eb916685ef5168b0e74;hp=12e9fc48d2aabf1180c2c9c677f46504cb54398d;hpb=50095fd90c5620872041250bd9d8159b67ec8aba;p=catagits%2FHTML-Zoom.git diff --git a/Makefile.PL b/Makefile.PL index 12e9fc4..0dc20df 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,5 +1,13 @@ -use inc::Module::Install; +use strict; +use warnings FATAL => 'all'; +use 5.008001; +use ExtUtils::MakeMaker; -all_from('lib/HTML/Zoom.pm'); +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; -WriteAll; +WriteMakefile( + NAME => 'HTML-Zoom', + VERSION_FROM => 'lib/HTML/Zoom.pm', + PREREQ_PM => { strictures => 1, 'Test::More' => '0.88' }, + test => { TESTS => 't/*.t t/*/*.t' }, +);