I am attempting to create an extension for the MySQL Connector
https://launchpad.net/myconnpyBut it is slightly different than a make install as it is using a Python Install instead, so I am not sure how to do this.
I did the whole touch /tmp/mark and then ran the python setup.py install and I captured a list of all the files. It appears the install just copies all of the files into /usr/local/lib/python2.7/ The install script does do some other setup it appears, but I believe that setup is just done on the files it is copying before it copies them.
So I am not sure if I am supposed to tar up all of the files, then untar them to do the mksquashfs? Or if there is something else I am supposed to do.
If I do tar, untar, and mksquashfs, when I create the extension will it actually copy the files to /usr/local/lib/python2.7/ ?
Is it okay to create extensions from Python installs or should I only do make installs? Would it be better to just add these 86 files to my .filetool.lst?