1# $Id: Makefile.PL,v 1.2 2005/06/28 07:04:50 mark Exp $
2
3require 5.005;
4use ExtUtils::MakeMaker;
5
6# See lib/ExtUtils/MakeMaker.pm for details of how to influence
7# the contents of the Makefile that is written.
8
9WriteMakefile (
10	'NAME'         => 'HTML::Chunks',
11	'VERSION_FROM' => 'lib/HTML/Chunks.pm', # gets version
12	'PREREQ_PM'    => {
13		'Test::More'  => '0',
14		'IO::Scalar'  => '0',
15		'Safe'        => '0',
16	},
17);
18