aboutsummaryrefslogtreecommitdiff
path: root/cfitsio
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-05 21:33:53 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-05 21:33:53 -0400
commit03dfd5d57e6c1d81544cffcb17b45ccc69b6e4f4 (patch)
treef66f9177f778b90576e9469ad391cef298f9a0c9 /cfitsio
parentc079cacdb36c70da3ed6cd3c14e96aa2f376b527 (diff)
downloadcbc-recipes-03dfd5d57e6c1d81544cffcb17b45ccc69b6e4f4.tar.gz
Initial commit
Diffstat (limited to 'cfitsio')
-rw-r--r--cfitsio/cfitsio.ini39
1 files changed, 39 insertions, 0 deletions
diff --git a/cfitsio/cfitsio.ini b/cfitsio/cfitsio.ini
new file mode 100644
index 0000000..2b02f5f
--- /dev/null
+++ b/cfitsio/cfitsio.ini
@@ -0,0 +1,39 @@
+[cbc_cgi]
+local_server: true
+local_port: 8888
+local_sources: /srv/conda/sources
+protocol: http
+url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port}
+
+[package]
+name: cfitsio
+version: 3.370
+
+[about]
+home: https://github.com/embray/${package:name}
+license: GPL
+summary: ${package:name}
+#readme: README.md
+
+[source]
+fn: ${package:name}${cbc_build:version}.tar.gz
+url: ${cbc_cgi:url}/${fn}
+
+[build]
+number: 1
+
+[requirements]
+build:
+ #
+run:
+ #
+
+[cbc_build]
+version: 3370
+
+linux:
+ ./configure --prefix=$$PREFIX --disable-static --enable-reentrant
+ (make -j $$CPU_COUNT shared && make install) || exit 1
+windows:
+ python setup.py install
+ if errorlevel 1 exit 1