diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-03-29 09:11:33 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-29 09:11:33 -0400 | 
| commit | cdbe91039e4f02bed02524ca5c26691af81369c1 (patch) | |
| tree | 2e52e4e8f8eda49d5de674303e548223b6ede36d /hstcal | |
| parent | b46f46f5c49609017d1e0d97985d0cfb0bbaadf7 (diff) | |
| download | astroconda-dev-cdbe91039e4f02bed02524ca5c26691af81369c1.tar.gz | |
Fixup hstcal to use cfitsio (#122)
Diffstat (limited to 'hstcal')
| -rw-r--r-- | hstcal/meta.yaml | 13 | 
1 files changed, 10 insertions, 3 deletions
| diff --git a/hstcal/meta.yaml b/hstcal/meta.yaml index a891b0b..86c1a70 100644 --- a/hstcal/meta.yaml +++ b/hstcal/meta.yaml @@ -3,7 +3,7 @@  {% if version[0] == 'v' %}  {%   set version = version[1:] %}  {% endif %} -{% set number = '2' %} +{% set number = '3' %}  about:      home: https://github.com/spacetelescope/{{ name }} @@ -19,10 +19,17 @@ package:  requirements:      build: -    - gcc >=4.7 [osx] +      - cfitsio +      - pkg-config +      - gcc >=4.7      run: -    - libgcc >=4.7 [osx] +      - cfitsio +      - libgcc >=4.7  source:      git_url: https://github.com/spacetelescope/{{ name }}.git + +test: +  commands: +    - calacs.e --gitinfo | 
