diff options
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 + |