about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython/builder.sh
blob: e4dce866c6765f194a181fdb80d3f7321e9b8ae1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
source $stdenv/setup

flags="WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=0 BUILD_OGL=0 UNICODE=1"

configurePhase() {
    cd wxPython
}
configurePhase=configurePhase

buildPhase() {
    python setup.py $flags build
}
buildPhase=buildPhase

installPhase() {
    python setup.py $flags install --prefix=$out
}
installPhase=installPhase

genericBuild