The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl
# $Id: Makefile.PL,v 1.3 2002/09/10 03:35:21 rcaputo Exp $
# Touch CHANGES so it exists.
open(CHANGES, ">>CHANGES") and close CHANGES;
WriteMakefile
( NAME => 'POE::Component::Client::Ping',
AUTHOR => 'Rocco Caputo <rcaputo@cpan.org>',
ABSTRACT => 'POE component for non-blocking/concurrent ICMP ping.',
VERSION_FROM => 'Ping.pm',
PM => { 'Ping.pm' => '$(INST_LIBDIR)/Ping.pm' },
PREREQ_PM => { POE => 0.11,
Time::HiRes => 1.20,
},
dist =>
{ COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
PREOP => ( 'cvs-log.perl | ' .
'tee ./$(DISTNAME)-$(VERSION)/CHANGES > ./CHANGES'
),
},
);