blob: 110c3f41c6fbd8e4fb1f3cf97288f45d46a7a68b (
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 || exit 1
|