line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package CPAN::Patches::SPc; |
2
|
|
|
|
|
|
|
|
3
|
5
|
|
|
5
|
|
2581512
|
use warnings; |
|
5
|
|
|
|
|
24
|
|
|
5
|
|
|
|
|
276
|
|
4
|
5
|
|
|
5
|
|
30
|
use strict; |
|
5
|
|
|
|
|
6
|
|
|
5
|
|
|
|
|
337
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '0.04'; |
7
|
|
|
|
|
|
|
|
8
|
5
|
|
|
5
|
|
71
|
use File::Spec; |
|
5
|
|
|
|
|
6
|
|
|
5
|
|
|
|
|
89
|
|
9
|
|
|
|
|
|
|
|
10
|
0
|
|
|
0
|
|
|
sub _path_types {qw( |
11
|
|
|
|
|
|
|
sharedstatedir |
12
|
|
|
|
|
|
|
)}; |
13
|
|
|
|
|
|
|
|
14
|
5
|
|
|
5
|
1
|
2627
|
sub prefix { use Sys::Path; Sys::Path->find_distribution_root(__PACKAGE__); }; |
|
5
|
|
|
0
|
|
160830
|
|
|
5
|
|
|
|
|
100
|
|
|
0
|
|
|
|
|
|
|
15
|
0
|
|
|
0
|
1
|
|
sub sharedstatedir { File::Spec->catdir(__PACKAGE__->prefix, 'sharedstate') }; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 NAME |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Acme::SysPath::SPc - build-time system path configuration |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 PATHS |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 prefix |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 sharedstatedir |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Used to lookup for patches set. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |