diff options
author | Justin Ely <ely@stsci.edu> | 2017-01-05 12:48:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-05 12:48:57 -0500 |
commit | 629f1d1d14cabed639dd2908195ef06ed02c34fa (patch) | |
tree | 82487c93fbafab6fc41716b8b727684f59b96da7 /iraf | |
parent | a96a1285ba6cc7b077ba62e2a73d4592dd78003f (diff) | |
parent | ae39975e0ebd1c31d15c47f396a0ae4521715ab3 (diff) | |
download | astroconda-contrib-629f1d1d14cabed639dd2908195ef06ed02c34fa.tar.gz |
Merge pull request #119 from jhunkeler/overhaul
Overhaul package recipes
Diffstat (limited to 'iraf')
-rw-r--r-- | iraf/meta.yaml | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/iraf/meta.yaml b/iraf/meta.yaml index 610850e..2c9da54 100644 --- a/iraf/meta.yaml +++ b/iraf/meta.yaml @@ -1,16 +1,23 @@ +{% set name = 'iraf' %} +{% set version = '2.16.1' %} +{% set number = '1' %} + about: home: http://iraf.noao.edu license: MIT summary: NOAO Image Reduction and Analysis Facility + build: binary_relocation: False [osx] detect_binary_files_with_prefix: False [osx] - number: '1' + number: {{ number }} + package: - name: iraf - version: 2.16.1 + name: {{ name }} + version: {{ version }} + source: - fn: iraf.tar.gz + fn: {{ name }}.tar.gz url: - - http://ssb.stsci.edu/stripped/linux/iraf.tar.gz [linux] - - http://ssb.stsci.edu/stripped/osx/iraf.tar.gz [osx] + - http://ssb.stsci.edu/stripped/linux/{{ name }}.tar.gz [linux] + - http://ssb.stsci.edu/stripped/osx/{{ name }}.tar.gz [osx] |