Makefile.PL v1.000000
Matt S Trout [Sun, 5 Dec 2010 17:07:28 +0000 (17:07 +0000)]
Makefile.PL [new file with mode: 0644]

diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..2e307c6
--- /dev/null
@@ -0,0 +1,13 @@
+use strict;
+use warnings FATAL => 'all';
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+  NAME => 'Eval::WithLexicals',
+  VERSION_FROM => 'lib/Eval/WithLexicals.pm',
+  ABSTRACT_FROM => 'lib/Eval/WithLexicals.pm',
+  AUTHOR => 'Matt S Trout <mst@shadowcat.co.uk>',
+  LICENSE => 'perl',
+  PREREQ_PM => { Moo => '0.009' },
+  EXE_FILES => [ 'bin/tinyrepl' ],
+);