File: Makefile.PL

package info (click to toggle)
libperldoc-search-perl 0.01-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 100 kB
  • sloc: perl: 91; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 807 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
######################################################################
# Makefile.PL for Perldoc::Search
# 2005, Mike Schilli <cpan@perlmeister.com>
######################################################################
use ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'         => 'Perldoc::Search',
    'VERSION_FROM' => 'lib/Perldoc/Search.pm', # finds $VERSION
    'PREREQ_PM'    => {
        SWISH::API::Common       => 0,
        Shell::POSIX::Select     => 0,
        Pod::Simple::TextContent => 0,
        File::Temp               => 0,
    }, # e.g., Module::Name => 1.1
    EXE_FILES      => ['eg/perldig'],
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM => 'lib/Perldoc/Search.pm',
       AUTHOR     => 'Mike Schilli <cpan@perlmeister.com>') : ()),
);