File: Makefile.PL

package info (click to toggle)
libxml-xslt-perl 0.48-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 1,596 kB
  • sloc: xml: 10,773; perl: 3,134; makefile: 12
file content (18 lines) | stat: -rwxr-xr-x 664 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/local/bin/perl

use ExtUtils::MakeMaker;

WriteMakefile(
	      ABSTRACT_FROM => 'lib/XML/XSLT.pm',
	      ABSTRACT      => 'Conversion of XML files with XSLT.',
	      AUTHOR        => 'Geert Josten (gjosten@sci.kun.nl) and Egon Willighagen (egonw@sci.kun.nl)',
              NAME	    => 'XML::XSLT',
              dist          => { COMPRESS    => 'gzip',
				 SUFFIX      => '.gz'},
              VERSION_FROM  => 'lib/XML/XSLT.pm',
              PREREQ_PM     => { XML::Parser => '2.23',
				                     XML::DOM    => '1.25',
                                 Test::More  => '0.33' },
	      EXE_FILES      => ['xslt-parser'],
             );