The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl
my $mbld = Module::Build->new(
# 'module_name' => 'XML::Tidy',
'dist_name' => 'XML-Tidy',
# 'dist_version_from' => 'Tidy.pm',
'dist_version' => '1.4.A7QCvHw',
'dist_abstract' => 'tidy indenting of XML documents',
'dist_author' => 'Pip Stuart <Pip@CPAN.Org>',
# 'create_readme' => '1',
# 'create_makefile_pl' => '1', # 'traditional',
'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();