2005-12-05 15:11:09 +01:00
|
|
|
source $stdenv/setup
|
2004-02-17 20:19:26 +01:00
|
|
|
|
2004-04-02 17:36:14 +02:00
|
|
|
flags="WXPORT=gtk2 BUILD_GLCANVAS=0 BUILD_OGL=0"
|
|
|
|
|
|
|
|
configurePhase() {
|
|
|
|
cd wxPython
|
|
|
|
}
|
|
|
|
configurePhase=configurePhase
|
|
|
|
|
|
|
|
buildPhase() {
|
|
|
|
python setup.py $flags build
|
|
|
|
}
|
|
|
|
buildPhase=buildPhase
|
|
|
|
|
|
|
|
installPhase() {
|
|
|
|
python setup.py $flags install --prefix=$out
|
|
|
|
}
|
|
|
|
installPhase=installPhase
|
|
|
|
|
|
|
|
genericBuild
|