File Coverage

alienfile
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1 1     1   196858 use alienfile;
  1         3  
  1         8  
2              
3             plugin 'PkgConfig' => (pkg_name => 'gsl');
4              
5             share {
6             start_url 'https://ftp.gnu.org/gnu/gsl';
7             plugin Download => (
8             filter => qr/^gsl-([\d\.]+)\.tar\.gz$/,
9             version => qr/^gsl-([\d\.]+)\.tar\.gz$/,
10             prefer => 1,
11             );
12             plugin Extract => 'tar.gz';
13             plugin 'Build::Autoconf';
14             build [
15             [ '%{configure} --enable-shared --disable-static' ],
16             [ '%{make}' ],
17             [ '%{make} install' ],
18             ];
19             plugin 'Gather::Dino';
20             };