-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
executable file
·35 lines (32 loc) · 1.44 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/perl
# I certianly make no guarantee that this will run on 5.6.0, but I can
# guarantee that it certianly will not work on anything older. Every
# reasonable effort is made to make it work on 5.8 -- however, you'll
# get better warnings in some cases when running under 5.10.
use 5.006;
use ExtUtils::MakeMaker;
use warnings;
use strict;
WriteMakefile(
NAME => 'Pod::Inherit',
AUTHOR => 'James Mastros <james@mastros.biz>',
ABSTRACT_FROM => 'lib/Pod/Inherit.pm',
VERSION_FROM => 'lib/Pod/Inherit.pm',
LICENSE => 'perl',
PREREQ_PM => {
'MRO::Compat' => 0,
'Path::Class' => 0,
'Pod::POM' => 0,
'Sub::Identify' => 0,
# Test dependencies below this boundry,
# please.
'Module::CoreList' => 0,
'Test::Differences' => 0,
'Test::Exception' => 0,
'Test::More' => 0,
'Test::NoWarnings' => 0,
'Test::Pod::Coverage' => 0,
'Test::Pod' => 0,
'Test::Warn' => 0,
},
);