File: Makefile.PL

package info (click to toggle)
libxml-xupdate-libxml-perl 0.6.0-3.2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 116 kB
  • sloc: perl: 487; makefile: 40
file content (19 lines) | stat: -rw-r--r-- 540 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Id: Makefile.PL,v 1.5 2003/09/29 10:36:37 pajas Exp $

use strict;

use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'		=> 'XML::XUpdate::LibXML',
    'VERSION_FROM'	=> 'lib/XML/XUpdate/LibXML.pm', # finds $VERSION
    'PREREQ_PM'		=> {
			    'XML::LibXML' => 1.54,
			    'XML::LibXML::Iterator' => 0,
			    'XML::LibXML::XPathContext' => 0.04
			   },
    'AUTHOR'            => 'Petr Pajas (pajas@matfyz.cz)',
    'ABSTRACT'          => 'update XML documents according to XUpdate file',
    'EXE_FILES'         => ['xupdate'],
);