a5e0e39cdb
This is so that the Unison wrapper can be generated with makeWrapper. * Use makeWrapper as a buildInput everywhere. * Updated BitTorrent, cvs2svn. svn path=/nixpkgs/trunk/; revision=10213
28 lines
689 B
Bash
28 lines
689 B
Bash
source $stdenv/setup
|
|
|
|
# Workaround for:
|
|
# File "...-python-2.4.4/lib/python2.4/posixpath.py", line 62, in join
|
|
# elif path == '' or path.endswith('/'):
|
|
# AttributeError: 'NoneType' object has no attribute 'endswith'
|
|
export HOME=$TMP
|
|
|
|
buildPhase=buildPhase
|
|
buildPhase() {
|
|
#substituteInPlace BitTorrent/GUI_wx/__init__.py --replace "'2.6'" "'2.8'"
|
|
python setup.py build
|
|
}
|
|
|
|
|
|
installPhase=installPhase
|
|
installPhase() {
|
|
python setup.py install --prefix=$out
|
|
|
|
# Create wrappers that set the environment correctly.
|
|
for i in $(cd $out/bin && ls); do
|
|
wrapProgram $out/bin/$i \
|
|
--set PYTHONPATH "$(toPythonPath $out):$PYTHONPATH"
|
|
done
|
|
}
|
|
|
|
genericBuild
|