diff options
author | Mark Wells <mark@freeside.biz> | 2014-09-11 15:54:45 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2014-09-11 15:54:45 -0700 |
commit | 792fa56fe32dfea38ab824183dc130bc926480df (patch) | |
tree | 671231a28c33964531bb5f829b6d30f22b5fcd74 /Makefile.PL |
Import original source of Geo-USCensus-Geocoding 0.01
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..fa04a9a --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,22 @@ +use 5.006; +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Geo::USCensus::Geocoding', + AUTHOR => q{Mark Wells <mark@freeside.biz>}, + VERSION_FROM => 'Geocoding.pm', + ABSTRACT_FROM => 'Geocoding.pm', + ($ExtUtils::MakeMaker::VERSION >= 6.3002 + ? ('LICENSE'=> 'perl') + : ()), + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + 'XML::LibXML' => 2, + 'LWP::UserAgent' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Geo-USCensus-Geocoding-*' }, +); |