/usr/local/CPAN/HTTP-Size/Makefile.PL


# $Id: Makefile.PL 2466 2007-12-14 20:52:46Z comdog $
use ExtUtils::MakeMaker;

require 5.006;

eval "use Test::Manifest 1.14";

WriteMakefile(
	'NAME'	       => 'HTTP::Size',
	'ABSTRACT'     => 'Get the byte size of an internet resource',
	'VERSION_FROM' => 'lib/Size.pm',
	'LICENSE'      => 'perl',
	'AUTHOR'       => 'brian d foy <bdfoy@cpan.org>',

	'PREREQ_PM'    => { 
		'HTTP::Request'         => '0',
		'URI'                   => '0',
		'HTML::SimpleLinkExtor' => '0',
		},

	'PM'           => {
		'lib/Size.pm'         => '$(INST_LIBDIR)/Size.pm',
		},

	'MAN3PODS'     => {
		'lib/Size.pm' => '$(INST_MAN3DIR)/HTTP::Size.3',
		},

	clean  => { FILES    => q|*.bak HTTP-Size-*| },

	);