RT#88706 Correct POD
[Net-Telnet.git] / Makefile.PL
blob3eb017195203114615faabd7a709d86d040d87f0
1 ## -*- Perl -*-
3 use v5.6;
4 use ExtUtils::MakeMaker qw(WriteMakefile);
6 WriteMakefile(NAME         => "Net::Telnet",
7               DISTNAME     => "Net-Telnet",
8               VERSION_FROM => "lib/Net/Telnet.pm",
9               PREREQ_PM => {
10                   "IO::Handle" => 0,
11                   "IO::Socket::INET" => 0,
12                   "Socket" => 0,
13                   "Symbol" => 0,
14                   "parent" => 0,
15               },
16               TEST_REQUIRES => {
17                   "Test::More" => 0,
18                   "Test::Exception" => 0,
19               },
20               dist         => { COMPRESS => "gzip", SUFFIX => "gz" },
21               ($] >= 5.005 ?
22                (ABSTRACT   => "Interact with TELNET port or other TCP ports",
23                 AUTHOR     => "Jay Rogers <jay\@rgrs.com>") : ()),
24               );