line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# use strict;
|
2
|
|
|
|
|
|
|
# $^W = 1; # Can't use "use warnings", see perl_version below.
|
3
|
1
|
|
|
1
|
|
10416
|
use inc::Module::Build::Functions;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
module_name 'Module::Build::Functions';
|
6
|
|
|
|
|
|
|
license 'perl';
|
7
|
|
|
|
|
|
|
perl_version '5.00503';
|
8
|
|
|
|
|
|
|
dist_author 'Curtis Jewell ';
|
9
|
|
|
|
|
|
|
dist_version_from 'lib/Module/Build/Functions.pm';
|
10
|
|
|
|
|
|
|
requires 'File::Slurp';
|
11
|
|
|
|
|
|
|
requires 'Module::Build' => 0.07;
|
12
|
|
|
|
|
|
|
test_requires 'Test::More';
|
13
|
|
|
|
|
|
|
test_requires 'Test::Compile';
|
14
|
|
|
|
|
|
|
test_requires 'Capture::Tiny' => 0.06;
|
15
|
|
|
|
|
|
|
add_to_cleanup 'Module-Build-Functions-*';
|
16
|
|
|
|
|
|
|
create_makefile_pl 'passthrough';
|
17
|
|
|
|
|
|
|
create_readme 1;
|
18
|
|
|
|
|
|
|
create_license 1;
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
create_build_script; |