1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# # the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'XML::Tidy',
'VERSION' => '1.2.54HJnFa',
'ABSTRACT' => 'tidy indenting of XML documents',
'AUTHOR' => 'Pip Stuart <Pip@CPAN.Org>',
'EXE_FILES' => [
'bin/xmltidy',
],
'PREREQ_PM' => {
'Math::BaseCnv' => 0,
'XML::XPath' => 0,
'XML::XPath::XMLParser' => 0,
}, # Module::Name => 1.1,
'dist' => { 'COMPRESS' => 'gzip', 'SUFFIX' => 'tgz' },
);
|