File: Makefile.PL

package info (click to toggle)
libpod-index-perl 0.14-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 156 kB
  • sloc: perl: 419; makefile: 6
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
    },
);