The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

use strict;

use ExtUtils::MakeMaker qw(WriteMakefile);

WriteMakefile(
    VERSION_FROM   => 'lib/ParaDNS.pm',
    NAME           => 'ParaDNS',
    PREREQ_PM      => { 
                        'Danga::Socket' => 0.52,
                        'Test::More'    => 0,
                        'Net::DNS'      => 0.48,
                      },
    ABSTRACT_FROM  => 'lib/ParaDNS.pm',
    AUTHOR         => 'Matt Sergeant <matt@sergeant.org>',
    clean          => {FILES => "tv.log"},
    EXE_FILES      => [qw(fast-rdns.pl)],
);