diff options
author | James E.H. Turner <jturner@gemini.edu> | 2016-09-29 11:39:27 -0400 |
---|---|---|
committer | James E.H. Turner <jturner@gemini.edu> | 2016-09-29 11:39:27 -0400 |
commit | a32e82dd68e48216723ab26caeca2d07efc52aa6 (patch) | |
tree | edab8715df8fa2f6a21df2d4c076d971972de2a5 /astroconda-build-utils | |
parent | 4ee8301df6891df89ede6aa3012f9a984ab5623c (diff) | |
download | astroconda-iraf-a32e82dd68e48216723ab26caeca2d07efc52aa6.tar.gz |
Rename astroconda-utils to astroconda-build-utils.
Diffstat (limited to 'astroconda-build-utils')
-rw-r--r-- | astroconda-build-utils/bld.bat | 3 | ||||
-rw-r--r-- | astroconda-build-utils/build.sh | 4 | ||||
-rw-r--r-- | astroconda-build-utils/meta.yaml | 18 |
3 files changed, 25 insertions, 0 deletions
diff --git a/astroconda-build-utils/bld.bat b/astroconda-build-utils/bld.bat new file mode 100644 index 0000000..fa5316a --- /dev/null +++ b/astroconda-build-utils/bld.bat @@ -0,0 +1,3 @@ + +echo Not supported on Windows +exit 1
\ No newline at end of file diff --git a/astroconda-build-utils/build.sh b/astroconda-build-utils/build.sh new file mode 100644 index 0000000..7abeef0 --- /dev/null +++ b/astroconda-build-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-build-utils/meta.yaml b/astroconda-build-utils/meta.yaml new file mode 100644 index 0000000..cff4145 --- /dev/null +++ b/astroconda-build-utils/meta.yaml @@ -0,0 +1,18 @@ +about: + home: https://github.com/jehturner/astroconda-build-utils + license: BSD + summary: Utilities to help build and install AstroConda packages +build: + binary_relocation: True + #detect_binary_files_with_prefix: False [osx] + number: '0' +package: + name: astroconda-build-utils + version: "0.1" +source: + git_url: https://github.com/jehturner/astroconda-build-utils.git +requirements: + run: + - iraf !=2.16.1,>=2.16.UR # conda oddly considers 2.16.1 > 2.16.UR/UR_2.16 + - pyraf + |