I use perl2exe (not free) to 'compile' .pl programs into .exe and NullSoft's
NSIS for the installer (free).
Tip when compiling via perl2exe:
======================
For Perl modules that aren't .pm files (like Wx::Frame) you must change
"use base qw(Wx::Frame); "
by
"use vars qw(@ISA);
@ISA = qw(Wx::Frame);
"
HTH
Ulisses
----- Original Message -----
From: "Jouke Visser" <jouke@...>
To: "ZDL Öffentlichkeitsreferat" <ZDLOER@...>
Cc: <wxperl-users@...>
Sent: Wednesday, October 08, 2003 3:46 AM
Subject: Re: [wxperl-users] How do you distribute your wxPerl Scripts
ZDL Öffentlichkeitsreferat wrote:
> hi everybody,
> how do you distribute your Perl scripts especially your wxPerl programs.
> do you use the perlcc, or what alternative to you prefer?
> What kind of installer do you use?
Don't use perlcc. It just doesn't work. I prefer PAR these days (see
CPAN for details on PAR). Other possibilities are PerlApp from
ActiveState (included in their Perl Development Kit) or Perl2Exe from
IndigoStar. PAR is the only free alternative.
To create nice looking installers, I'd say there are three options:
PerlMSI (again included in ActiveState's PDK), which is not free,
NullSoft's NSIS (http://nsis.sourceforge.net/site/index.php) or
InnoSetup (http://www.innosetup.com).
HTH,
Jouke Visser
PS: My combination currently is PAR with InnoSetup...I'm considering NSIS...
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
wxperl-users mailing list
wxperl-users@...
https://lists.sourceforge.net/lists/listinfo/wxperl-users
|