diff options
Diffstat (limited to 'iraf-help/build.sh')
-rw-r--r-- | iraf-help/build.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/iraf-help/build.sh b/iraf-help/build.sh new file mode 100644 index 0000000..4ff47c8 --- /dev/null +++ b/iraf-help/build.sh @@ -0,0 +1,14 @@ +# Configure the environment for IRAF, since conda build appears not to do +# "source activate" after installing dependencies (this would instead need to +# eval $PREFIX/iraf/unix/hlib/setup directly if "--level" needs specifying): +. setup_iraf.sh + +logname=help_log + +make_iraf_help iraf > $logname 2>&1 +make_iraf_help noao >> $logname 2>&1 +make_iraf_help color >> $logname 2>&1 +make_iraf_help vol >> $logname 2>&1 + +cp -p $logname "$PREFIX/iraf/" + |