The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Net::CIDR::Lookup',
    AUTHOR              => 'Matthias Bethke <matthias@towiski.de>',
    VERSION_FROM        => 'lib/Net/CIDR/Lookup.pm',
	ABSTRACT            => 'Hash-like lookup table based on CIDR blocks',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE'=> 'perl') : ()),
    PL_FILES            => {},
    MIN_PERL_VERSION    => 5.010001,
    PREREQ_PM => {
        'parent'      => 0,
        'Bit::Vector' => 0,
        'Socket'      => 1.94,
    },
    BUILD_REQUIRES => {
        'Test::More'                => 0,
        'Test::Class'               => 0,
        'Class::Data::Inheritable'  => 0,
    },
    dist                => { COMPRESS => 'bzip2', SUFFIX => 'bz', },
    clean               => { FILES => 'Net-CIDR-Lookup-*' },
);