-
Notifications
You must be signed in to change notification settings - Fork 67
/
Makefile.PL
85 lines (78 loc) · 2.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $meta_merge = {
META_MERGE => {
"meta-spec" => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git@github.com:mschilli/log4perl.git',
web => 'https://github.com/mschilli/log4perl',
},
MailingList => 'mailto:log4perl-devel@lists.sourceforge.net',
bugtracker => {
web => 'https://github.com/mschilli/log4perl/issues',
},
},
prereqs => {
runtime => {
recommends => {
'Log::Dispatch' => 0,
'DBI' => '1.607',
'DBD::SQLite' => 0,
'DBD::CSV' => '0.33',
'SQL::Statement' => '1.20',
'Log::Dispatch::FileRotate' => '1.10',
'XML::DOM' => '1.29',
},
requires => {
'File::Spec' => '0.82',
'File::Path' => '2.07',
},
},
test => {
requires => {
'Test::More' => '0.88', # done_testing
},
},
},
}
};
WriteMakefile(
'NAME' => 'Log::Log4perl',
'VERSION_FROM' => 'lib/Log/Log4perl.pm', # finds $VERSION
ABSTRACT_FROM => 'lib/Log/Log4perl.pm', # retrieve abstract from module
AUTHOR => 'Mike Schilli <m@perlmeister.com>',
MIN_PERL_VERSION => '5.006',
'clean' => {FILES => "*.tar.gz *.ppd pod2htm*"},
EXE_FILES => ["eg/l4p-tmpl"],
LICENSE => 'perl_5',
$ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
get_man3pods(),
);
##########################################
sub get_man3pods {
##########################################
# Only done for versions < 5.8.0
return () if $] >= 5.008;
print <<EOT;
##################################################
# Detected buggy MakeMaker version, creating man #
# pages manually #
##################################################
EOT
require File::Find;
my @pms = ();
File::Find::find(sub {
push @pms, $File::Find::name if /\.pm$/
}, "lib");
return('MAN3PODS', {
map { my @comps = split /\//, $_;
shift @comps;
my $csep = join '::', @comps;
$csep =~ s/\.pm$//;
($_, "\$(INST_MAN3DIR)/$csep.\$(MAN3EXT)");
} @pms
});
}