From e33b3f4ae5f63db6f734ef38049092911ea9961b Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Thu, 17 Nov 2016 00:57:40 -0800 Subject: initial version --- Makefile.PL | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile.PL (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..18fabd6 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,23 @@ +use 5.006; +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Geo::USCensus::TIGERweb', + AUTHOR => q{Mark Wells }, + VERSION_FROM => 'TIGERweb.pm', + ABSTRACT_FROM => 'TIGERweb.pm', + ($ExtUtils::MakeMaker::VERSION >= 6.3002 + ? ('LICENSE'=> 'perl') + : ()), + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + 'LWP::UserAgent' => 0, + 'HTTP::Request::Common' => 0, + 'JSON::MaybeXS' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Geo-USCensus-TIGERweb-*' }, +); -- cgit v1.2.1