summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-11-17 00:57:40 -0800
committerMark Wells <mark@freeside.biz>2016-11-17 00:57:40 -0800
commite33b3f4ae5f63db6f734ef38049092911ea9961b (patch)
tree5e252c804741effec716759d1285af277df18f1b /Makefile.PL
initial version
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL23
1 files changed, 23 insertions, 0 deletions
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 <mark@freeside.biz>},
+ 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-*' },
+);