#########################################################

Wx-Perl-Packager

Version 0.04.

(c)2006 Mark Dootson

#########################################################

Package to ease wxPerl application packaging with PAR and 
PerlApp, PDK and Perl2Exe.
Just include in BEGIN block at top of main script.

BEGIN { use Wx::Perl::Packager; }

For Perl2Exe, add an additional use statement to
ensure correct module clean up

BEGIN { use Wx::Perl::Packager; }
use Wx::Perl::Packager;

PDK / PerlApp users are provided with a script called
wxpdk
This creates a base .perlapp file with necessary 
wxWidgets DLL bindings included.

PAR users are provided with a simple wrapper for pp called
wxpar. 
This adds the necessary Wx DLLs in the correct place.

eg run :
wxpar --gui -o myapp.exe myscript.pl

REQUIRES >= Perl 5.8.1
         >= Wx   0.49


INSTALLATION

To install this module, using VC6 run the following commands

    perl Makefile.PL
    nmake
    nmake test
    nmake install


SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

    perldoc Wx::Perl::Packager

You can also look for information at:

    http://www.gigi.co.uk

COPYRIGHT AND LICENCE

Copyright (C) 2006,2007 Mark Dootson

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
