I try to install a python module with a custom installation layout.
From the documentation I gathered that I could do
python ./setup.py install -f --install-base="/home/hstock/tmp/python" \
--install-purelib=modules \
--install-scripts=bin \
--install-data=data \
--install-platlib=modules \
--install-headers=include
and this should install modules to /home/hstock/tmp/python/modules - however it seems that install-base is ignored and modules are installed to ./modules.
Is this a bug or did I get the documentation wrong?
(This is python 2.6.5 on Ubuntu Lucid)
Update:
The module I want to install is self made, the setup.py is very simple:
#!/usr/bin/env python
from distutils.core import setup
setup(
name='ilogtoolbox',
provides=['ilogtoolbox'],
version='0.6.3.1',
packages=['ilogtoolbox'],
requires=['daemon'],
scripts=['prunedirs', 'logstoexternal']
)