1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4
5require 5.005;
6
7WriteMakefile(
8    'NAME'	=> 'XML::XPath',
9    'VERSION_FROM' => 'XPath.pm', # finds $VERSION
10    'AUTHOR' => 'Matt Sergeant, AxKit.com Ltd',
11    'ABSTRACT_FROM' => 'XPath.pm',
12    'PREREQ_PM' => {
13		    'XML::Parser' => '2.23',
14		    },
15    'EXE_FILES' => [ 'examples/xpath' ],
16);
17