The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

my $name       = 'LaBrea::Tarpit::Report';
@_ = split('::',$name);
my $src        = $_[$#_] . '.pm';
my $pod        = $_[$#_] . '.3';

WriteMakefile(
   'NAME'         => $name,
   'VERSION_FROM' => $src,		# finds $VERSION
   'PM'           => {$src	=> '$(INST_LIBDIR)/' .$src},
   'PREREQ_PM'    => {'Net::Whois::IP'	=> '0.35',
		      'Net::DNS::ToolKit' => '0.41'},
   'dist'         => {COMPRESS	=> 'gzip', SUFFIX => 'gz'}
);