File: Makefile.PL

package info (click to toggle)
libxml-filter-sort-perl 1.01-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 208 kB
  • sloc: perl: 869; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 653 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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::Filter::Sort',
    'VERSION_FROM'    => 'lib/XML/Filter/Sort.pm',
    'PREREQ_PM'	      => { 
                           Test::Simple       => 0.41,
                           XML::SAX           => undef,
                           XML::SAX::Writer   => undef,
		         },
    'EXE_FILES'       => [ qw(bin/xmlsort) ],
    ($] >= 5.005 ? (
      'AUTHOR'        => 'Grant McLean <grantm@cpan.org>',
      'ABSTRACT_FROM' => 'lib/XML/Filter/Sort.pm',
    ) : () )

);