From: Matt S Trout Date: Sun, 5 Dec 2010 17:07:28 +0000 (+0000) Subject: Makefile.PL X-Git-Tag: v1.000000 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FEval-WithLexicals.git;a=commitdiff_plain;h=b243c437950cbead376f07e6d853d4c79c9693bb;hp=8e4d194fb0093f65a439963b12151a7b4aa5aaee Makefile.PL --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..2e307c6 --- /dev/null +++ b/Makefile.PL @@ -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 ', + LICENSE => 'perl', + PREREQ_PM => { Moo => '0.009' }, + EXE_FILES => [ 'bin/tinyrepl' ], +);