nixpkgs/pkgs/tools/networking/bittorrent/builder.sh
Eelco Dolstra 4e4ad61aee * Added pygtk.
* Updated bittorrent to 4.0.1.

svn path=/nixpkgs/trunk/; revision=2879
2005-04-22 18:26:04 +00:00

23 lines
606 B
Bash

. $stdenv/setup
. $makeWrapper
buildPhase=buildPhase
buildPhase() {
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
# Note: the GUI apps except to be in a directory called `bin',
# so don't move them.
mv $out/bin/$i $out/bin/.orig-$i
makeWrapper $out/bin/.orig-$i $out/bin/$i \
--set PYTHONPATH "$out/lib/python2.3/site-packages:$pygtk/lib/python2.3/site-packages/gtk-2.0"
done
}
genericBuild