aboutsummaryrefslogtreecommitdiff
path: root/iraf
diff options
context:
space:
mode:
authorJames E.H. Turner <jturner@gemini.edu>2016-10-26 10:16:03 -0400
committerJames E.H. Turner <jturner@gemini.edu>2016-10-26 10:16:03 -0400
commitb3796602986c73b8fc809c9383acd802deea337c (patch)
treecfadc348a72677d6e8af825736fdbb4fa87195ae /iraf
parent243ba32dd994b7a15583ba135eccdecdcb43c47b (diff)
downloadastroconda-iraf-b3796602986c73b8fc809c9383acd802deea337c.tar.gz
Rename iraf package to iraf-core, in order to make a more complete iraf meta-package.
Diffstat (limited to 'iraf')
-rw-r--r--iraf/bld.bat3
-rw-r--r--iraf/build.sh44
-rw-r--r--iraf/meta.yaml22
3 files changed, 0 insertions, 69 deletions
diff --git a/iraf/bld.bat b/iraf/bld.bat
deleted file mode 100644
index fa5316a..0000000
--- a/iraf/bld.bat
+++ /dev/null
@@ -1,3 +0,0 @@
-
-echo Not supported on Windows
-exit 1 \ No newline at end of file
diff --git a/iraf/build.sh b/iraf/build.sh
deleted file mode 100644
index 0ce0b6e..0000000
--- a/iraf/build.sh
+++ /dev/null
@@ -1,44 +0,0 @@
-set -x
-
-# Drop extraneous conda-set environment variables
-unset ARCH CFLAGS CXXFLAGS LDFLAGS MACOSX_DEPLOYMENT_TARGET
-
-# Complement build script
-export TERM=xterm
-
-# Execute build
-printenv
-if ! ./build 32; then
- echo "The main IRAF build failed" 2>&1
- exit 1
-fi
-
-echo
-
-# Install into PREFIX
-if ! ./install $PREFIX; then
- echo "IRAF installation into $PREFIX failed" 2>&1
- exit 1
-fi
-
-# "Register" the IRAF environment setup with conda activate:
-mkdir -p $PREFIX/etc/conda/{activate.d,deactivate.d}
-
-echo '
-if [ -n "$CONDA_PREFIX" ]; then
- source $CONDA_PREFIX/bin/setup_iraf.sh
-else
- source $CONDA_ENV_PATH/bin/setup_iraf.sh
-fi
-' > $PREFIX/etc/conda/activate.d/iraf.sh
-chmod 755 $PREFIX/etc/conda/activate.d/iraf.sh
-
-echo '
-if [ -n "$CONDA_PREFIX" ]; then
- source $CONDA_PREFIX/bin/forget_iraf.sh
-else
- source $CONDA_ENV_PATH/bin/forget_iraf.sh
-fi
-' > $PREFIX/etc/conda/deactivate.d/iraf.sh
-chmod 755 $PREFIX/etc/conda/deactivate.d/iraf.sh
-
diff --git a/iraf/meta.yaml b/iraf/meta.yaml
deleted file mode 100644
index f3628f3..0000000
--- a/iraf/meta.yaml
+++ /dev/null
@@ -1,22 +0,0 @@
-about:
- home: http://iraf.noao.edu
- license: MIT (and third-party licenses)
- summary: NOAO Image Reduction and Analysis Facility
-build:
- binary_relocation: False # [osx]
- detect_binary_files_with_prefix: False
- # (if binary relocation is problematic, add "ignore_prefix_files" below)
- rpaths:
- - lib32/
- number: '0'
-package:
- name: iraf
- version: 2.16.UR
-requirements:
- build:
- - iraf-os-libs # [linux]
- run:
- - iraf-os-libs # [linux]
-source:
- svn_url: https://aeon.stsci.edu/ssb/svn/u-rel/iraf-2.16/trunk
-