summaryrefslogtreecommitdiff
path: root/pyraf/build.sh
blob: 4ce41647fb52664c5f7e2ac6082d7cfe8314c776 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# XQuartz or no-go
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 .
fi

$PYTHON setup.py install