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

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