I'm trying to create a deb-package from distribution in a tarball. It has setup.py file.
My actions are:
python setup.py --command-packages=stdeb.command sdist_dsc
cd deb_dist/<pkgname>
debuild -uc -us -i -b
Everything works fine. But when i do
dpkg -i <pkgname>.deb
all package module's files are installs into /usr/share/pyshared/<pkgname> directory and i want to change it.
Is it possible? How?
Thanks.