2005-12-05 06:11:09 -08:00
|
|
|
source $stdenv/setup
|
2004-02-17 11:19:26 -08:00
|
|
|
|
2004-04-02 07:36:14 -08: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
|