Re: using setup.py in debian/rules

2001-12-27 Thread Bastian Kleineidam
Hi. On Mon, Dec 17, 2001 at 08:14:46PM -0600, Joe Reinhardt wrote: What is the best way to use the setup.py in the debian/rules? Added lines marked with +++ +++ PYTHON=python2.1 +++ PACKAGE=scipy configure: configure-stamp configure-stamp: dh_testdir # Add here commands to

Re: using setup.py in debian/rules

2001-12-17 Thread Neil Schemenauer
Joe Reinhardt wrote: -python setup.py bdist cd debian/scipy tar zxvf ../../dist/SciPy-0.2.0.linux-*.tar.gz The install command takes a --prefix argument. That might be cleaner than using bdist. Neil

Re: using setup.py in debian/rules

2001-12-17 Thread Joe Reinhardt
Neil Schemenauer [EMAIL PROTECTED] writes: Joe Reinhardt wrote: -python setup.py bdist cd debian/scipy tar zxvf ../../dist/SciPy-0.2.0.linux-*.tar.gz The install command takes a --prefix argument. That might be cleaner than using bdist. Thanks, this is just what I needed. --