blob: d6739816f786b74d3247e8709f032aa84d037894 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
pip install sip # fails
cd build/sip
python configure.py
make && make install
cd ../..
pip install PyQt # fails
cd build/PyQt
python configure.py
make && make install
|