File: Makefile.PL

package info (click to toggle)
libxml-xpath-perl 1.11-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 416 kB
  • ctags: 450
  • sloc: perl: 4,000; xml: 34; makefile: 33
file content (16 lines) | stat: -rw-r--r-- 425 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

require 5.005;

WriteMakefile(
    'NAME'	=> 'XML::XPath',
    'VERSION_FROM' => 'XPath.pm', # finds $VERSION
	'AUTHOR' => 'Matt Sergeant, FastNet Software Ltd',
	'ABSTRACT_FROM' => 'XPath.pm',
	'PREREQ_PM' => {
			'XML::Parser' => '2.23',
			},
	'EXE_FILES' => [ 'examples/xpath' ],
);