~ubuntu-branches/ubuntu/saucy/libmarc-xml-perl/saucy

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2007-04-13 21:28:32 UTC
  • Revision ID: james.westby@ubuntu.com-20070413212832-51ppwi54zrwblx1b
Tags: upstream-0.85
ImportĀ upstreamĀ versionĀ 0.85

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use ExtUtils::MakeMaker;
 
2
 
 
3
WriteMakefile(
 
4
    'NAME'              => 'MARC-XML',
 
5
    'DISTNAME'          => 'MARC-XML',
 
6
    'VERSION_FROM'      => 'lib/MARC/File/XML.pm', 
 
7
    'PMLIBDIRS'         => [ qw( lib/ ) ],
 
8
    'AUTHOR'            => 'Ed Summers <ehs@pobox.com>',
 
9
    'PREREQ_PM'         => { 
 
10
                            'XML::SAX'          => 0.12,
 
11
                            'MARC::Record'      => 1.36,
 
12
                            'MARC::Charset'     => 0.91,
 
13
                            },
 
14
    'EXE_FILES'         => [ qw( bin/marc2xml bin/xml2marc ) ]
 
15
);
 
16