File: Makefile.PL

package info (click to toggle)
libnet-irr-perl 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 80 kB
  • sloc: perl: 181; makefile: 6
file content (15 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'		=> 'Net::IRR',
    'VERSION_FROM'	=> 'lib/Net/IRR.pm',
    'PREREQ_PM'		=> { 
                               Test::More       => 0,
                               IO::Socket::INET => 0,
                           },
    (($] ge '5.005') ?
        (   'AUTHOR'   => 'Todd Caine <todd.caine@gmail.com>',
            'ABSTRACT' => 'Perl interface to the Internet Route Registry daemon',
        ) : (),
    ),
);