summaryrefslogtreecommitdiff
path: root/macros/texinfo/texinfo/Pod-Simple-Texinfo/Makefile.PL
blob: 42eebefd85d862f7a85dd6365d21733dc685743f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use 5.000;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'Pod::Simple::Texinfo',
    VERSION_FROM      => 'lib/Pod/Simple/Texinfo.pm', # finds $VERSION
    EXE_FILES         => [ 'pod2texi' ],
    PREREQ_PM         => { "Pod::Simple::PullParser" => 0,
                           "Texinfo::Parser" => 0,
                           "Getopt::Long" => 0,
                           "File::Spec" => 0,
                           "File::Basename" => 0, }, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'lib/Pod/Simple/Texinfo.pm', # retrieve abstract from module
       AUTHOR         => 'Patrice Dumas <pertusus@free.fr>') : ()),
);