From 68c383d52b1f7316d820007e19e00ba7f62ba82f Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Sat, 30 Nov 2013 16:14:46 -0800 Subject: initial commit --- Makefile.PL | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Makefile.PL (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..94fd136 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,20 @@ +use 5.006; +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Geo::Melissa::WebSmart', + AUTHOR => q{Mark Wells }, + VERSION_FROM => 'WebSmart.pm', + ABSTRACT_FROM => 'WebSmart.pm', + ($ExtUtils::MakeMaker::VERSION >= 6.3002 + ? ('LICENSE'=> 'perl') + : ()), + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Geo-Melissa-WebSmart-*' }, +); -- cgit v1.2.1