blob: 76ffe3576503fcb4c0683fe4766a37b0431ae017 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 | {% set name = 'fitsverify' %}
{% set version = '4.18' %}
{% set number = '5' %}
about:
    home: http://heasarc.gsfc.nasa.gov/fitsio/fitsio.html
    license: BSD-like
    summary: |
        Fitsverify is a computer program that rigorously checks whether a FITS
        (Flexible Image Transport System) data file conforms to the
        requirements defined in Version 3.0 of the FITS Standard document.
build:
    number: {{ number }}
package:
    name: {{ name }}
    version: {{ version }}
requirements:
    build:
    - cfitsio >=3.430
    - pkg-config [osx]
    run:
    - cfitsio >=3.430
source:
    fn: {{ name }}-{{ version }}.tar.gz
    url: https://heasarc.gsfc.nasa.gov/docs/software/ftools/{{ name }}/{{ name }}-{{ version }}.tar.gz
test:
    commands:
    - fitsverify -h
 |