diff options
-rw-r--r-- | gemini.disco_stu/bld.bat | 3 | ||||
-rw-r--r-- | gemini.disco_stu/build.sh | 2 | ||||
-rw-r--r-- | gemini.disco_stu/meta.yaml | 24 |
3 files changed, 29 insertions, 0 deletions
diff --git a/gemini.disco_stu/bld.bat b/gemini.disco_stu/bld.bat new file mode 100644 index 0000000..fa5316a --- /dev/null +++ b/gemini.disco_stu/bld.bat @@ -0,0 +1,3 @@ + +echo Not supported on Windows +exit 1
\ No newline at end of file diff --git a/gemini.disco_stu/build.sh b/gemini.disco_stu/build.sh new file mode 100644 index 0000000..0b6fbde --- /dev/null +++ b/gemini.disco_stu/build.sh @@ -0,0 +1,2 @@ +python setup.py install + diff --git a/gemini.disco_stu/meta.yaml b/gemini.disco_stu/meta.yaml new file mode 100644 index 0000000..e9c0c2a --- /dev/null +++ b/gemini.disco_stu/meta.yaml @@ -0,0 +1,24 @@ +about: + home: http://www.gemini.edu/sciops/data-and-results/processing-software + license: BSD + summary: Gemini Distortion Correction and Stacking Utility (for GSAOI) +build: + binary_relocation: True + #detect_binary_files_with_prefix: False [osx] + number: '0' +package: + name: gemini.disco_stu + version: "1.3.1" +source: + fn: disco_stu-1.3.1.tar.gz + url: http://www.gemini.edu/sciops/data/software/disco_stu-1.3.1.tar.gz +requirements: + build: + - python x.x # syntax needed to force 2.7 builds... + run: + - python >=2.7 # (uses OrderedDict, argparse) + - numpy >=1.9 # (version tested, from the manual) + - scipy >=0.14 # (to match the NumPy requirement) + - astropy >=1.0 # (from the manual) + - sextractor >=2.8.6 # (from the manual) + |