diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-02-17 14:25:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-17 14:25:05 -0500 |
commit | 9eefcd8f86aa119fd82b8aa4d475ccf284d5415d (patch) | |
tree | 984eb42c31ad6ea73a91fbc585351816192dfb43 /fitsverify/meta.yaml | |
parent | 2ffe495f05a6b5b362fd185cce8fcca7604f7add (diff) | |
download | astroconda-dev-9eefcd8f86aa119fd82b8aa4d475ccf284d5415d.tar.gz |
Initial commit of fitsverify (#22)
Diffstat (limited to 'fitsverify/meta.yaml')
-rw-r--r-- | fitsverify/meta.yaml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/fitsverify/meta.yaml b/fitsverify/meta.yaml new file mode 100644 index 0000000..4923305 --- /dev/null +++ b/fitsverify/meta.yaml @@ -0,0 +1,34 @@ +{% set name = 'fitsverify' %} +{% set version = '4.18' %} +{% set number = '0' %} + +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 + - pkgconfig [osx] + + run: + - cfitsio + +source: + fn: {{ name }}-{{ version }}.tar.gz + url: https://heasarc.gsfc.nasa.gov/docs/software/ftools/{{ name }}/{{ name }}-{{ version }}.tar.gz + +test: + commands: + - fitsverify -h |