X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=0dc20df75d47ae8744003dce424a2d6b25db3b31;hb=8628f51e13fda44666b0dfb02b37f196eb07c875;hp=0b9d6e1da375dfa44de2b2a4d411361ae563372c;hpb=1cf035405cb81b780825c083cf7f5c0767b19243;p=catagits%2FHTML-Zoom.git diff --git a/Makefile.PL b/Makefile.PL index 0b9d6e1..0dc20df 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +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'; -requires 'strictures' => 1; - -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' }, +);