use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

WriteMakefile
(
	($] ge '5.005') ?
	(
		'AUTHOR' => 'Ron Savage (ron@savage.net.au)',
		'ABSTRACT' => 'Convert an XML file into a suite of CGI forms',
    ) : (),
	clean			=>
	{
		FILES		=> 'blib/* Makefile MANIFEST CGI-Formalware-*'
	},
	dist			=>
	{
		COMPRESS	=> 'gzip',
		SUFFIX		=> 'gz'
	},
	DISTNAME		=> 'CGI-Formalware',
	NAME			=> 'CGI::Formalware',
	PL_FILES		=> {},
	PREREQ_PM		=>
	{
		CGI			=> '2.45',
		Net::Telnet	=> '3.01',
		Test::More	=> 0,
		Test::Pod	=> 0,
		XML::DOM	=> '1.14',
	},
	VERSION_FROM	=> 'lib/CGI/Formalware.pm'
);
