Files
nixpkgs/pkgs/development/python-modules/wxPython/builder.sh
T

18 lines
266 B
Bash
Raw Normal View History

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