Talk:Py2deb

m (Reverted edits by 93.124.84.147 (Talk) to last revision by 91.64.179.0)
m (Protected "Talk:Py2deb": Excessive vandalism ([edit=autoconfirmed] (indefinite) [move=autoconfirmed] (indefinite)))
 

Latest revision as of 23:45, 24 March 2018

usually python libraries are distributed with setuptools. If there is a setup.py in the folder, chances are, the following procedure works for creating package with py2deb: run

python setup.py bdist_dumb

this creates a <package name>-<version>-linux-armv6l.tar.gz in dist/ with the tree of to be installed files (e.g. /usr/lib/python2.5/site-packages/<package name>/...). extract with:

cd ..; mkdir src; cd src; tar xzvf ../<package name>/dist/<package name>-<version>-linux-armv6l.tar.gz

and continue with build_myapp.py script like described here.