/usr/local/CPAN/WWW-TarPipe/Makefile.PL
use strict;
use warnings;
use ExtUtils::MakeMaker;
eval 'use ExtUtils::MakeMaker::Coverage';
WriteMakefile(
( MM->can( 'signature_target' ) ? ( SIGN => 1 ) : () ),
NAME => 'WWW::TarPipe',
AUTHOR => 'Andy Armstrong <andy@hexten.net>',
LICENSE => 'perl',
VERSION_FROM => 'lib/WWW/TarPipe.pm',
ABSTRACT_FROM => 'lib/WWW/TarPipe.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'LWP::UserAgent' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'WWW-TarPipe-*' },
);