#use 5.008; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( 'NAME' => 'Sprocket::Plugin::FTP::Server', 'VERSION_FROM' => 'lib/Sprocket/Plugin/FTP/Server.pm', # finds $VERSION 'PREREQ_PM' => { 'POE' => undef, 'Sprocket' => undef, 'Filesys::Virtual::Async' => undef, 'Filesys::Virtual::Async::Plain' => undef, 'Switch' => undef, }, 'dist' => { 'SUFFIX' => '.gz', 'DIST_DEFAULT' => 'all tardist', 'COMPRESS' => 'gzip -9vf', }, # TODO other authors here # Add these new keywords supported since 5.005 ( $] >= 5.005 ? ( ABSTRACT_FROM => 'lib/Sprocket/Plugin/FTP/Server.pm', AUTHOR => 'Jeroen Habraken , David Davis ' ) : () ), );