From 49fabe633e3a1f1b8d6b164929a498d9e48dcc38 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Mon, 30 Sep 2013 19:03:51 -0700 Subject: start --- 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..2a68cb4 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,20 @@ +use 5.006; +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Geo::TomTom::Geocoding', + AUTHOR => q{Mark Wells }, + VERSION_FROM => 'Geocoding.pm', + ABSTRACT_FROM => 'Geocoding.pm', + ($ExtUtils::MakeMaker::VERSION >= 6.3002 + ? ('LICENSE'=> 'perl') + : ()), + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Geo-TomTom-Geocoding-*' }, +); -- cgit v1.2.1