line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Alien::LibJQ;
|
2
|
1
|
|
|
1
|
|
135422
|
use strict;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
31
|
|
3
|
1
|
|
|
1
|
|
5
|
use warnings;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
29
|
|
4
|
1
|
|
|
1
|
|
5
|
use base qw/Alien::Base/;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
616
|
|
5
|
1
|
|
|
1
|
|
48280
|
use vars qw/$VERSION/;
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
69
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
$VERSION = '0.04';
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Alien::LibJQ - Build libjq library (https://stedolan.github.io/jq/)
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
In C:
|
16
|
|
|
|
|
|
|
use strict;
|
17
|
|
|
|
|
|
|
use warnings;
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
use ExtUtils::MakeMaker;
|
20
|
|
|
|
|
|
|
use Alien::Base::Wrapper;
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
...
|
23
|
|
|
|
|
|
|
WriteMakefile(
|
24
|
|
|
|
|
|
|
Alien::Base::Wrapper->new('Alien::LibJQ')->mm_args2(
|
25
|
|
|
|
|
|
|
...
|
26
|
|
|
|
|
|
|
CONFIGURE_REQUIRES => {
|
27
|
|
|
|
|
|
|
...
|
28
|
|
|
|
|
|
|
'Alien::LibJQ' => '0.01',
|
29
|
|
|
|
|
|
|
...
|
30
|
|
|
|
|
|
|
},
|
31
|
|
|
|
|
|
|
...
|
32
|
|
|
|
|
|
|
),
|
33
|
|
|
|
|
|
|
);
|
34
|
|
|
|
|
|
|
...
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Provide libjq.so to other modules.
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 AUTHOR
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Dongxu Ma
|
43
|
|
|
|
|
|
|
CPAN ID: DONGXU
|
44
|
|
|
|
|
|
|
dongxu __at__ cpan.org
|
45
|
|
|
|
|
|
|
https://github.com/dxma/perl5-cpan
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This program is free software licensed under the...
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The MIT License
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The full text of the license can be found in the
|
54
|
|
|
|
|
|
|
LICENSE file included with this module.
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 SEE ALSO
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
perl(1).
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=cut
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
1;
|