File Coverage

blib/lib/Alien/Libevent.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Alien::Libevent;
2              
3 2     2   410925 use strict;
  2         12  
  2         60  
4 2     2   10 use warnings;
  2         4  
  2         61  
5 2     2   10 use base qw( Alien::Base );
  2         5  
  2         1240  
6              
7             our $VERSION = '2.6';
8              
9             =head1 NAME
10              
11             Alien::Libevent - Wrapper for installing libevent
12              
13             =head1 DESCRIPTION
14              
15             Alien::Libevent is a wrapper to install libevent library. Modules
16             that depend on libevent can depend on Alien::Libevent and use the
17             CPAN shell to install it for you.
18              
19             Win32 is currently not supported, please help supporting it if
20             you're interested.
21              
22             =head1 AUTHOR
23              
24             Thibault Duponchelle Ethibault.duponchelle@gmail.comE
25             Johannes Plunien Eplu@cpan.orgE
26              
27             =head1 COPYRIGHT AND LICENSE
28              
29             Copyright 2020 by Thibault Duponchelle
30              
31             Copyright 2009 by Johannes Plunien
32              
33             This library is free software; you can redistribute it and/or modify
34             it under the same terms as Perl itself.
35              
36             =head1 SEE ALSO
37              
38             =over 4
39              
40             =item * L
41              
42             =back
43              
44             =head1 REPOSITORY
45              
46             L
47              
48             =cut
49              
50             1;