diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-08-09 11:10:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-09 11:10:15 -0400 |
commit | 6a4484790fefb15b48a11b9640590196e45caaa5 (patch) | |
tree | e4ed9f3fc5f024ca3170416bc8917cb6ab5d164d /cfitsio/meta.yaml | |
parent | 44c0e17a1740262e17a9f377a2ba7301f2cf093b (diff) | |
download | astroconda-contrib-6a4484790fefb15b48a11b9640590196e45caaa5.tar.gz |
Cfitsio disable cURL (#385)
* Bump build number for affected recipes
Diffstat (limited to 'cfitsio/meta.yaml')
-rw-r--r-- | cfitsio/meta.yaml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/cfitsio/meta.yaml b/cfitsio/meta.yaml index 31896b3..20be0ac 100644 --- a/cfitsio/meta.yaml +++ b/cfitsio/meta.yaml @@ -1,7 +1,7 @@ {% set name = 'cfitsio' %} {% set version = '3.440' %} {% set version_short = '3440' %} -{% set number = '0' %} +{% set number = '1' %} about: home: http://heasarc.gsfc.nasa.gov/fitsio/fitsio.html @@ -19,13 +19,15 @@ package: requirements: build: - - curl - - gcc [osx] + - gcc >=4.6 run: - - curl - - libgcc [osx] + - libgcc >=4.6 source: + patches: + - 0001-cfitsio-autoconf-disable-curl.patch + fn: {{ name }}{{ version_short }}.tar.gz url: http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/{{ name }}{{ version_short }}.tar.gz + #md5: 8c9b3383752f1bd663b936c297f19feb # verification broken in conda-build through 3.7.1 |