1## -*- Perl -*-
2
3use ExtUtils::MakeMaker qw(WriteMakefile);
4
5WriteMakefile(NAME	   => "Net::Telnet",
6	      DISTNAME	   => "Net-Telnet",
7	      VERSION_FROM => "lib/Net/Telnet.pm",
8	      dist	   => { COMPRESS => "gzip", SUFFIX => "gz" },
9	      ($] >= 5.005 ?
10	       (ABSTRACT   => "Interact with TELNET port or other TCP ports",
11		AUTHOR	   => "Jay Rogers <jay\@rgrs.com>") : ()),
12	      );
13