forked from perl-pod/pod-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
56 lines (44 loc) · 1.23 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# This -*- perl -*- script writes the Makefile for Pod::Simple
#
# Time-stamp: "2004-05-24 00:21:20 ADT"
#
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
#
require 5;
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Pod::Simple',
VERSION_FROM => 'lib/Pod/Simple.pm',
ABSTRACT_FROM => 'lib/Pod/Simple.pod',
PREREQ_PM => {
'Text::Wrap' => '98.112902',
'Pod::Escapes' => '1.04',
# RT#29439
'Test' => '1.25',
# And finally, things I don't have any particular version in mind for:
map {; $_ => 0 } qw[
File::Spec File::Basename Cwd Config Carp overload Symbol strict
constant integer File::Find Test::More
]
},
INSTALLDIRS => $] >= 5.009003 ? 'perl' : 'site',
LICENSE => 'perl',
AUTHOR => 'Allison Randal <[email protected]>',
META_MERGE => {
resources => {
repository => 'git://github.com/theory/pod-simple.git',
bugtracker => 'mailto:[email protected]',
license => 'http://dev.perl.org/licenses/',
},
},
);
package MY;
sub libscan
{ # Determine things that should *not* be installed
my($self, $path) = @_;
return '' if $path =~ m/~/;
$path;
}
__END__