tomazos has asked for the wisdom of the Perl Monks concerning the following question:
(Primer: This node contains sarcasm. The purpose here is of course to ask what is involved in shipping a Perl/Tk app in general, not this specific Hello World example.)
I've written this amazing Perl/Tk application. Here goes:
#!/usr/bin/perl use strict; use warnings; use Tk; my $mw = MainWindow->new(); $mw->Label(-text => 'Hello, world!')->pack(); $mw->Button(-text => 'Quit', -command => sub { exit } )->pack(); MainLoop;
Wow. Are you impressed? I bet you are.
Now I am ready to ship it. I want to deploy it such that someone can click on a URL and have the application downloaded and installed on Unix, Mac and Windows with a minimum of fuss. My end users may not have Perl and/or Tk installed on their machine.
What are the options? Is it possible to compile the perl interpretter, whatever modules I use and Tk into one bundle and installer?
Also, what are the licensing implications? Can I then charge people for my amazing "Hello Wolrd" application?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Shipping a Perl/Tk App
by jdtoronto (Prior) on Jul 12, 2005 at 21:00 UTC | |
Re: Shipping a Perl/Tk App
by gri6507 (Deacon) on Jul 12, 2005 at 21:10 UTC | |
Re: Shipping a Perl/Tk App
by jpeg (Chaplain) on Jul 12, 2005 at 21:12 UTC | |
by tomazos (Deacon) on Jul 12, 2005 at 22:51 UTC | |
by gri6507 (Deacon) on Jul 12, 2005 at 21:15 UTC | |
by jpeg (Chaplain) on Jul 12, 2005 at 21:24 UTC | |
by waswas-fng (Curate) on Jul 12, 2005 at 21:55 UTC | |
by tomazos (Deacon) on Jul 12, 2005 at 23:13 UTC |
Back to
Seekers of Perl Wisdom