use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile being created. WriteMakefile( 'NAME' => 'IO::Event', 'DISTNAME' => 'IO-Event', 'VERSION_FROM' => 'Event.pm', 'EXE_FILES' => ['rinetd.pl'], ($] >= 5.005 ? ('ABSTRACT' => 'Tied Filehandles for Nonblocking IO with Object Callbacks', 'AUTHOR' => 'David Muir Sharnoff ') : ()), 'dist' => {COMPRESS=>'gzip', SUFFIX=>'gz'}, 'PREREQ_PM' => { 'Event' => 0.87, 'IO::Handle' => 0, 'Time::HiRes' => 0, 'Test::Simple' => 0, 'Getopt::Long' => 0, 'File::Slurp' => 0, 'File::Flock' => 0, 'Net::Netmask' => 0, 'Daemon::Generic' => 0, }, ); package MY; sub postamble { <<"END_OF_POSTAMBLE"; pm_to_blib: README README: Event.pod \tpod2text Event.pod >README END_OF_POSTAMBLE }