summaryrefslogtreecommitdiff
path: root/pyraf/build.sh
blob: 4b1dd33bab0fa50525e4f589bc06e18312d8bf79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
if [[ `uname -s` == "Darwin" ]]; then
    export CFLAGS="-I/opt/X11/include"
    export LDFLAGS="-L/opt/X11/lib"
fi

if [[ $PY3K > 0 ]]; then
set +e
    2to3 -w --fix=print,except,numliterals .
fi

python setup.py install || exit 1