a7d4f19ab3
* wxPython builder: wrap the Python programs (such as pyshell) so that they actually work. svn path=/nixpkgs/trunk/; revision=27122
23 lines
430 B
Bash
23 lines
430 B
Bash
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
|
|
|
|
# Ugly workaround for Nixpkgs/111.
|
|
ln -s $out/lib/python*/site-packages/wx-*-gtk2-unicode/* $out/lib/python*/site-packages
|
|
|
|
wrapPythonPrograms
|
|
}
|
|
|
|
genericBuild
|