diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-02-22 10:05:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-22 10:05:54 -0500 |
commit | ee653e87c1e5586380e6533a0111b3998d4543b9 (patch) | |
tree | d8a9ec51f1f32e2178ebb112f6e123f7ee780365 | |
parent | 2b812a7e5c64cae674e1a1cf622fc3455d196805 (diff) | |
download | astroconda-contrib-ee653e87c1e5586380e6533a0111b3998d4543b9.tar.gz |
Initial commit of CCfits 2.5 (#114)
-rw-r--r-- | ccfits/build.sh | 3 | ||||
-rw-r--r-- | ccfits/meta.yaml | 28 |
2 files changed, 31 insertions, 0 deletions
diff --git a/ccfits/build.sh b/ccfits/build.sh new file mode 100644 index 0000000..ca4ca68 --- /dev/null +++ b/ccfits/build.sh @@ -0,0 +1,3 @@ +./configure --prefix=$PREFIX --disable-static --with-cfitsio=$PREFIX +make -j $CPU_COUNT +make install diff --git a/ccfits/meta.yaml b/ccfits/meta.yaml new file mode 100644 index 0000000..e55dc90 --- /dev/null +++ b/ccfits/meta.yaml @@ -0,0 +1,28 @@ +{% set name = 'ccfits' %} +{% set badname = 'CCfits' %} +{% set version = '2.5' %} +{% set number = '0' %} + +about: + home: + license: BSD-like + summary: | + CCfits is an object oriented interface to the cfitsio library. + +build: + number: {{number}} + +package: + name: {{name}} + version: {{version}} + +requirements: + build: + - cfitsio >=3.08 + + run: + - cfitsio >=3.08 + +source: + fn: {{badname}}-{{version}}.tar.gz + url: http://heasarc.gsfc.nasa.gov/docs/software/fitsio/ccfits/{{badname}}-{{version}}.tar.gz |