File Coverage

blib/lib/Alien/SWIG4.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Alien::SWIG4;
2              
3 1     1   229307 use strict;
  1         10  
  1         51  
4 1     1   7 use warnings;
  1         2  
  1         25  
5 1     1   5 use base qw( Alien::Base );
  1         1  
  1         494  
6 1     1   4396 use 5.008004;
  1         3  
7              
8             1;
9              
10             =head1 NAME
11              
12             Alien::SWIG4 - Find or build SWIG v4 C/C++ interface generator
13              
14             =head1 SYNOPSIS
15              
16             Command line tool:
17              
18             use Alien::SWIG4;
19             use Env qw( @PATH );
20              
21             unshift @PATH, Alien::SWIG4->bin_dir;
22              
23             =head1 DESCRIPTION
24              
25             This distribution provides SWIG so that it can be used by other
26             Perl distributions that are on CPAN. It does this by first trying to
27             detect an existing install of SWIG on your system. If found it
28             will use that. If it cannot be found, the source code will be downloaded
29             from the internet and it will be installed in a private share location
30             for the use of other modules.
31              
32             =head1 SEE ALSO
33              
34             =over 4
35              
36             =item L
37              
38             The SWIG interface generator home page.
39              
40             =item L
41              
42             Documentation on the Alien concept itself.
43              
44             =item L
45              
46             The base class for this Alien.
47              
48             =item L
49              
50             Detailed manual for users of Alien classes.
51              
52             =back
53              
54             =cut