Module::Install -> Distar
Matt S Trout [Mon, 14 Feb 2011 19:49:28 +0000 (19:49 +0000)]
Makefile.PL
maint/Makefile.PL.include [new file with mode: 0644]

index 0b9d6e1..545d94c 100644 (file)
@@ -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 (file)
index 0000000..f991a7a
--- /dev/null
@@ -0,0 +1,3 @@
+use Distar;
+
+author 'mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>';