|
#!/usr/bin/perl
my $mbld = Module::Build->new(
'dist_name' => 'XML-Tidy' ,
'dist_version' => '1.4.A7QCvHw' ,
'dist_abstract' => 'tidy indenting of XML documents' ,
'dist_author' => 'Pip Stuart <Pip@CPAN.Org>' ,
'license' => 'gpl' ,
'script_files' => {
'bin/xmltidy' => '1' ,
},
'pm_files' => {
'Tidy.pm' => 'lib/XML/Tidy.pm' ,
},
'requires' => {
'Math::BaseCnv' => '0' ,
'Test' => '0' ,
'Test::Pod' => '0' ,
'Test::Pod::Coverage' => '0' ,
'XML::XPath' => '0' ,
'XML::XPath::XMLParser' => '0' ,
},
);
$mbld ->create_build_script();
|