1use ExtUtils::MakeMaker;
2
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5
6WriteMakefile(
7    'NAME'               => 'IO::Socket::Socks',
8    'LICENSE'            => 'lgpl',
9    'PREREQ_PM'          => { 'Socket' => 1.94, 'IO::Select' => 0, 'constant' => 1.03 },
10    'BUILD_REQUIRES'     => { 'Test::More' => 0.88 },
11    'CONFIGURE_REQUIRES' => { 'ExtUtils::MakeMaker' => 6.52 },
12    'META_MERGE' => { resources => {repository => 'https://github.com/olegwtf/p5-IO-Socket-Socks'} },
13    'VERSION_FROM'  => 'lib/IO/Socket/Socks.pm',
14    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
15      (ABSTRACT_FROM  => 'lib/IO/Socket/Socks.pm', # retrieve abstract from module
16       AUTHOR         => 'Oleg G <oleg@cpan.org>') : ()),
17    'dist' => {
18        'COMPRESS' => 'gzip --best'
19    }
20);
21