From: Matt S Trout Date: Mon, 14 Feb 2011 19:49:28 +0000 (+0000) Subject: Module::Install -> Distar X-Git-Tag: release_0.009004~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9ce1440eb02f7da582c472c13b976f66ff1465c1;hp=2abde91e52cfbe863892c1932e795e0b6305e6df;p=catagits%2FHTML-Zoom.git Module::Install -> Distar --- diff --git a/Makefile.PL b/Makefile.PL index 0b9d6e1..545d94c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,12 @@ -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 } +); diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include new file mode 100644 index 0000000..f991a7a --- /dev/null +++ b/maint/Makefile.PL.include @@ -0,0 +1,3 @@ +use Distar; + +author 'mst - Matt S. Trout (cpan:MSTROUT) ';