blob: 9bc61fc83fe7b19021e393d48f00c97a4712432e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# 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
# As of v1.14, the "source" tarball contains some unwanted Apple binaries that
# mess up linking unless removed:
find . \( -name "*.a" -o -name "*.o" \) -exec rm -f {} \;
# Build from source in envs/_build (using build script from astroconda-utils):
ac_build_iraf_pkg
|