File: Build.PL

package info (click to toggle)
libxml-tidy-perl 1.12.B55J2qn-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 208 kB
  • sloc: perl: 781; makefile: 11
file content (28 lines) | stat: -rw-r--r-- 1,079 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/perl
use Module::Build;
my $mbld = Module::Build->new(
# 'module_name'                   => 'XML::Tidy',
  'dist_name'                     => 'XML-Tidy',
# 'dist_version_from'             => 'Tidy.pm',
  'dist_version'                  => '1.12.B55J2qn',
  '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();