forked from rurban/optimize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
executable file
·39 lines (35 loc) · 825 Bytes
/
Makefile.PL
File metadata and controls
executable file
·39 lines (35 loc) · 825 Bytes
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
use 5.008;
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'optimize',
'VERSION_FROM' => 'lib/optimize.pm',
'PREREQ_PM' =>
{
'DynaLoader' => 0,
'Attribute::Handlers' => 0,
'B::Generate' => '1.34',
'B::Utils' => 0,
#'B::Hooks::EndOfScope' => '0.09',
'optimizer' => '0.06',
},
AUTHOR => 'Artur Bergman, Reini Urban',
($ExtUtils::MakeMaker::VERSION gt '6.46' ?
('META_MERGE' =>
{
resources =>
{
license => 'http://dev.perl.org/licenses/',
repository => 'http://github.com/rurban/optimize',
},
}
) : ()),
);
sub MY::depend { "
README : lib/optimize.pm
pod2text lib/optimize.pm > README
cover : cover_db/coverage.html
cover_db/coverage.html :
PERL5OPT=-MDevel::Cover make test
\$(PERL) -S cover
"; }