Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

par::strippedparl::base5.18(3) [mojave man page]

PAR::StrippedPARL::Base(3)				User Contributed Perl Documentation				PAR::StrippedPARL::Base(3)

NAME
PAR::StrippedPARL::Base - Base class for the PARL data packages SYNOPSIS
# Please use one of the siblings of this class instead. use base 'PAR::StrippedPARL::Base'; DESCRIPTION
This class is internal to PAR. Do not use it outside of PAR. This class is basically just a container for a static binary PAR loader which doesn't include the PAR code like the parl or parl.exe you are used to. If you're really curious, I'll tell you it is just a copy of the myldr/static (or myldr/static.exe) file. The data is appended during the "make" phase of the PAR build process. If the binary data isn't appended during the build process, the two class methods will return the empty list. CLASS METHODS
write_parl Takes a file name as argument. Writes the raw binary data in the package to the specified file and embeds the core modules to produce a complete PAR loader (parl). Returns true on success or the empty list on failure. get_raw Returns the binary data attached to the data package. Returns the empty list on failure. write_raw Takes a file name as argument and writes the binary data to the file. Returns true on success and the empty list on failure. SUBCLASSING
Subclasses need to implement the "_data_pos" class method which returns the value of "tell DATA" as it was after the class was loaded. AUTHORS
Steffen Mueller <smueller@cpan.org>, Audrey Tang <cpan@audreyt.org> COPYRIGHT AND LICENSE
Copyright 2006-2009 by Steffen Mueller <smueller@cpan.org>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.18.2 2012-01-06 PAR::StrippedPARL::Base(3)

Check Out this Related Man Page

PAR::Packer(3)						User Contributed Perl Documentation					    PAR::Packer(3)

NAME
PAR::Packer - PAR Packager DESCRIPTION
This module implements the App::Packer::Backend interface, for generating stand-alone executables, perl scripts and PAR files. Currently, this module is used by the command line tool pp internally, as well as by the contributed contrib/gui_pp/gpp program. Since version 0.97 of PAR, this module and its related tools such as "pp" have been stripped from the PAR distribution and are now distributed as the "PAR-Packer" distribution so that PAR users need not necessarily have a C compiler. SEE ALSO
PAR, pp App::Packer, App::Packer::Backend ACKNOWLEDGMENTS
Mattia Barbon for taking the first step in refactoring pp into App::Packer::Backend::PAR, and Edward S. Peschko for continuing the work that eventually became this module. AUTHORS
Audrey Tang <cpan@audreyt.org> Steffen Mueller <smueller@cpan.org> <http://par.perl.org/> is the official PAR website. You can write to the mailing list at <par@perl.org>, or send an empty mail to <par-subscribe@perl.org> to participate in the discussion. Please submit bug reports to <bug-par@rt.cpan.org>. COPYRIGHT
Copyright 2004-2010 by Audrey Tang <cpan@audreyt.org>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.16.2 2012-02-22 PAR::Packer(3)
Man Page