File: Makefile.PL

package info (click to toggle)
libpod-index-perl 0.14-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 112 kB
  • ctags: 36
  • sloc: perl: 419; makefile: 44
file content (14 lines) | stat: -rw-r--r-- 300 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use 5.008;
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'		=> 'Pod::Index',
    'VERSION_FROM'	=> 'lib/Pod/Index.pm',
    'EXE_FILES'         => [qw( podindex )],
    'PREREQ_PM'		=> {
        Search::Dict => 0,
        Pod::Parser  => 1,
        #Test::Pod    => 1.20, # for testing
    },
);