Makefile.PL 837 B

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