| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
use Inline::MakeMaker; |
|
2
|
|
|
|
|
|
|
# See lib/ExtUtils/MakeMaker.pm for details of how to influence |
|
3
|
|
|
|
|
|
|
# the contents of the Makefile that is written. |
|
4
|
|
|
|
|
|
|
WriteMakefile( |
|
5
|
|
|
|
|
|
|
'NAME' => 'Ogg::Vorbis::Header', |
|
6
|
|
|
|
|
|
|
'VERSION_FROM' => 'Header.pm', # finds $VERSION |
|
7
|
|
|
|
|
|
|
'PREREQ_PM' => { |
|
8
|
|
|
|
|
|
|
Inline::C => 0, |
|
9
|
|
|
|
|
|
|
}, # e.g., Module::Name => 1.1 |
|
10
|
|
|
|
|
|
|
'CONFIGURE_REQUIRES' => { |
|
11
|
|
|
|
|
|
|
Inline::MakeMaker => 0, |
|
12
|
|
|
|
|
|
|
}, |
|
13
|
|
|
|
|
|
|
META_MERGE => { |
|
14
|
|
|
|
|
|
|
'meta-spec' => { version => 2 }, |
|
15
|
|
|
|
|
|
|
dynamic_config => 0, |
|
16
|
|
|
|
|
|
|
}, |
|
17
|
|
|
|
|
|
|
($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
|
18
|
|
|
|
|
|
|
(ABSTRACT_FROM => 'Header.pm', # retrieve abstract from module |
|
19
|
|
|
|
|
|
|
AUTHOR => 'Dan Pemstein ') : ()), |
|
20
|
|
|
|
|
|
|
); |