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