Hi,
So I was taking a look at this<http://groups.google.com/group/
pyinstaller/browse_thread/thread/2884993f9b070968>  here on cross
compiling from Linux to Windows.
I'm the one who implemented this feature some time ago. And I'm going to remove it in the near future, since it does one work half. Please have a look at <http://groups.google.com/group/pyinstaller/browse_thread/thread/61067112eb546562>
Can it work with Wine?
Yes, it works fine with Wine. (In difference to py2exe which did not work in wine last time I tried.) This is what I'm using now.

One of the benefits is: one can use a shell script to install Python and everything you need in wine. And after bundling, you can simply delete the wine directory. So you'll get an test environment quite cheep.

Here are parts of my setup-script:

PYHOME=c:/python25
PYTHON="wine $PYHOME/python.exe"
WINREPO=~/devel/windows-repos  # my repository of Windows software

msiexec /q /i $WINREPO/python-2.5.4.msi
cd /tmp
curl http://python-distribute.org/distribute_setup.py | $PYTHON
wine easy_install pip virtualenv
cp -v $WINREPO/mfc71.dll $(winepath -u $PYHOME)/DLLs
wine $WINREPO/pywin32-209.1.win32-py2.5.exe
wine $WINREPO/nsis-*-setup.exe

--
Schönen Gruß - Regards
Hartmut Goebel
Dipl.-Informatiker (univ.), CISSP, CSSLP

Goebel Consult
Spezialist für IT-Sicherheit in komplexen Umgebungen
http://www.goebel-consult.de

Monatliche Kolumne: http://www.cissp-gefluester.de/
Goebel Consult mit Mitglied bei http://www.7-it.de


Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

Reply via email to