diff options
author | jturner <jturner@gemini.edu> | 2016-08-17 19:01:52 -0400 |
---|---|---|
committer | jturner <jturner@gemini.edu> | 2016-08-17 19:01:52 -0400 |
commit | d675e052fbc0b4f9e373d9cd1b7b2d1b473d7d9a (patch) | |
tree | 4e52a88ff7da52557e987cc9a3c3ac8d39d36dcc | |
parent | d8414f80d621961f6cc007d52b898d097efec72a (diff) | |
download | astroconda-iraf-d675e052fbc0b4f9e373d9cd1b7b2d1b473d7d9a.tar.gz |
Add recipe for new astroconda-utils package, containing build & run-time helper scripts (currently for IRAF).
-rw-r--r-- | astroconda-utils/bld.bat | 3 | ||||
-rw-r--r-- | astroconda-utils/build.sh | 4 | ||||
-rw-r--r-- | astroconda-utils/meta.yaml | 18 |
3 files changed, 25 insertions, 0 deletions
diff --git a/astroconda-utils/bld.bat b/astroconda-utils/bld.bat new file mode 100644 index 0000000..fa5316a --- /dev/null +++ b/astroconda-utils/bld.bat @@ -0,0 +1,3 @@ + +echo Not supported on Windows +exit 1
\ No newline at end of file diff --git a/astroconda-utils/build.sh b/astroconda-utils/build.sh new file mode 100644 index 0000000..7abeef0 --- /dev/null +++ b/astroconda-utils/build.sh @@ -0,0 +1,4 @@ +# Copy scripts to the installation: +dest="$PREFIX/bin" +mkdir -p "$dest" && cp -p scripts/* "$dest/" + diff --git a/astroconda-utils/meta.yaml b/astroconda-utils/meta.yaml new file mode 100644 index 0000000..e45a6c2 --- /dev/null +++ b/astroconda-utils/meta.yaml @@ -0,0 +1,18 @@ +about: + home: https://github.com/jehturner/astroconda-utils + license: BSD + summary: Build and run time utilities for AstroConda +build: + binary_relocation: True + #detect_binary_files_with_prefix: False [osx] + number: '0' +package: + name: astroconda-utils + version: "0.1" +source: + git_url: https://github.com/jehturner/astroconda-utils.git +requirements: + run: + - iraf ==2.16_UR + - pyraf + |