File: Makefile.PL

package info (click to toggle)
libxml-tidy-perl 1.20-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 268 kB
  • sloc: perl: 621; makefile: 8
file content (25 lines) | stat: -rw-r--r-- 914 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
use ExtUtils::MakeMaker;
WriteMakefile(
  'NAME'           => 'XML::Tidy',
# 'VERSION_FROM'   => 'lib/XML/Tidy.pm',
  'VERSION'        => '1.20',
# 'ABSTRACT_FROM'  => 'lib/XML/Tidy.pm',
  'ABSTRACT'       => 'tidy indenting of XML documents',
  'LICENSE'        => 'gpl_3',
  'AUTHOR'         => [ 'Pip Stuart <Pip@CPAN.Org>' ],
  'EXE_FILES'      => [ 'bin/xmltidy' ],
  'TEST_REQUIRES'  => {
    'Test'                           => 0,
    'Test::More'                     => 0,
    'Test::Pod'                      => 0,
    'Test::Pod::Coverage'            => 0,
  }, # Module::Name                  => 1.1,
  'PREREQ_PM'      => {
    'Carp'                           => 0,
    'Math::BaseCnv'                  => 0,
    'XML::XPath'                     => 0,
    'XML::XPath::XMLParser'          => 0,
  },
  'dist'           => { 'COMPRESS'   => 'gzip',
                        'SUFFIX'     => '.tgz' },
);