diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-10-31 11:37:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-31 11:37:21 -0400 |
commit | b5c8288be739e8f89dcd765f524fa6727769c6c0 (patch) | |
tree | 23847086de140558c0e9a2264a78a646a8d06a73 /wcstools | |
parent | 7a3a1ee642c031d580a2217a7da7d72e7bb7436e (diff) | |
download | astroconda-contrib-b5c8288be739e8f89dcd765f524fa6727769c6c0.tar.gz |
Remove dSYM directories; Tidy up recipe. (#85)
Diffstat (limited to 'wcstools')
-rw-r--r-- | wcstools/build.sh | 1 | ||||
-rw-r--r-- | wcstools/meta.yaml | 13 |
2 files changed, 10 insertions, 4 deletions
diff --git a/wcstools/build.sh b/wcstools/build.sh index fb751b2..597c531 100644 --- a/wcstools/build.sh +++ b/wcstools/build.sh @@ -4,6 +4,7 @@ mkdir -p $PREFIX/bin \ $PREFIX/include \ $PREFIX/share/doc/wcstools +rm -rf bin/*.dSYM cp -a bin/* $PREFIX/bin cp -a libwcs/libwcs.a $PREFIX/lib cp -a libwcs/*.h $PREFIX/include diff --git a/wcstools/meta.yaml b/wcstools/meta.yaml index f51f98c..32049f8 100644 --- a/wcstools/meta.yaml +++ b/wcstools/meta.yaml @@ -1,19 +1,24 @@ {% set name = 'wcstools' %} {% set version = '3.9.4' %} -{% set number = '0' %} +{% set number = '1' %} about: home: http://tdc-www.harvard.edu/wcstools license: GPL - summary: 'For setting and using the world coordinate systems (WCS) in the headers of the most common astronomical image formats' + summary: | + For setting and using the world coordinate systems (WCS) in the + headers of the most common astronomical image formats + build: number: {{ number }} + package: name: {{ name }} version: {{ version }} + requirements: build: run: + source: fn: {{ name }}-{{ version }}.tar.gz - url: - - http://tdc-www.harvard.edu/software/{{ name }}/{{ name }}-{{ version }}.tar.gz + url: http://tdc-www.harvard.edu/software/{{ name }}/{{ name }}-{{ version }}.tar.gz |