line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Alien::CFITSIO; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: Build and Install the CFITSIO library |
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
304293
|
use strict; |
|
1
|
|
|
|
|
11
|
|
|
1
|
|
|
|
|
30
|
|
6
|
1
|
|
|
1
|
|
7
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
29
|
|
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
13
|
use base qw( Alien::Base ); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
639
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = 'v4.3.0.0'; |
11
|
|
|
|
|
|
|
use constant |
12
|
1
|
|
|
1
|
|
5672
|
CFITSIO_VERSION => 4.03; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
74
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# |
17
|
|
|
|
|
|
|
# This file is part of Alien-CFITSIO |
18
|
|
|
|
|
|
|
# |
19
|
|
|
|
|
|
|
# This software is Copyright (c) 2022 by Smithsonian Astrophysical Observatory. |
20
|
|
|
|
|
|
|
# |
21
|
|
|
|
|
|
|
# This is free software, licensed under: |
22
|
|
|
|
|
|
|
# |
23
|
|
|
|
|
|
|
# The GNU General Public License, Version 3, June 2007 |
24
|
|
|
|
|
|
|
# |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
__END__ |