skeleton Makefile.PL
Matt S Trout [Sat, 11 Aug 2012 17:16:32 +0000 (17:16 +0000)]
Makefile.PL [new file with mode: 0644]

diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..7a0cf78
--- /dev/null
@@ -0,0 +1,14 @@
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+  NAME => 'HTML-String',
+  VERSION => '1.0',
+  PREREQ_PM => {
+    'Safe::Isa' => 1,
+    'Data::Munge' => '0.04',
+    'B::Hooks::EndOfScope' => '0.11',
+    'strictures' => 1,
+  }
+);