1use ExtUtils::MakeMaker;
2# $Revision: 1.2 $
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    'AUTHOR'		=> 'Sam Varshavchik <sam@email-scan.com>',
7    'ABSTRACT_FROM'	=> 'lib/Net/CIDR.pm',
8    'NAME'		=> 'Net::CIDR',
9    'VERSION_FROM'	=> 'lib/Net/CIDR.pm', # finds $VERSION
10    'PREREQ_PM'	=> { 'Carp' => 0 }, # e.g., Module::Name => 1.1
11    'LICENSE' => 'perl',
12    'PL_FILES' => { 'Net-CIDR.spec.PL' => 'Net-CIDR.spec' }
13);
14