1use 5.008008;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    AUTHOR          => 'Cornelius Lin (cornelius.howl@gmail.com)',
7    ABSTRACT        => 'BBS Client',
8    dist            => {
9        COMPRESS    => 'gzip',
10        SUFFIX      => '.gz',
11    },
12    NAME              => 'BBS::Client',
13    VERSION_FROM      => 'lib/BBS/Client.pm', # finds $VERSION
14    PREREQ_PM         => {
15				Encode => 0 ,
16				Time::HiRes => 0 ,
17				Net::Telnet => 0 ,
18				Text::Iconv => 0 ,
19				Lingua::ZH::Wrap => 0 ,
20                Switch  => 0,
21                Encode => 0,
22                POSIX => 0,
23		},
24    EXE_FILES       => [ <script/*> ],
25    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
26      (ABSTRACT_FROM  => 'lib/BBS/Client.pm', # retrieve abstract from module
27       AUTHOR         => 'Cornelius <cornelius.howl@gmail.com>') : ()),
28);
29