• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/IO/H20-Feb-2021-2,094479

private/H20-Feb-2021-382264

t/H20-Feb-2021-10,4206,039

ChangesH A D20-Feb-20214.5 KiB320166

MANIFESTH A D31-Oct-2020920 4342

META.jsonH A D20-Feb-20211.4 KiB5857

META.ymlH A D20-Feb-2021819 3231

Makefile.PLH A D20-Feb-20212 KiB7757

READMEH A D20-Feb-20212.5 KiB10064

README

1
2                            IO-Compress-Lzf
3
4                             Version 2.101
5
6                            20 Feburary 2021
7
8        Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
9          This program is free software; you can redistribute it
10           and/or modify it under the same terms as Perl itself.
11
12DESCRIPTION
13-----------
14
15This module provides a Perl interface to allow reading and writing of
16lzf files/buffers.
17
18PREREQUISITES
19-------------
20
21Before you can build IO-Compress-Lzf you need to have the following
22installed on your system:
23
24    * Perl 5.006 or better.
25    * Compress::LZF
26    * IO::Compress::Base
27
28BUILDING THE MODULE
29-------------------
30
31Assuming you have met all the prerequisites, the module can now be built
32using this sequence of commands:
33
34    perl Makefile.PL
35    make
36    make test
37
38INSTALLATION
39------------
40
41To install IO-Compress-Lzf, run the command below:
42
43    make install
44
45TROUBLESHOOTING
46---------------
47
48SUPPORT
49-------
50
51General feedback/questions/bug reports should be sent to
52https://github.com/pmqs/IO-Compress-Lzf/issues (preferred) or
53https://rt.cpan.org/Public/Dist/Display.html?Name=IO-Compress-Lzf.
54
55FEEDBACK
56--------
57
58How to report a problem with IO-Compress-Lzf.
59
60To help me help you, I need all of the following information:
61
62 1. The Versions of everything relevant.
63    This includes:
64
65     a. The *complete* output from running this
66
67            perl -V
68
69        Do not edit the output in any way.
70        Note, I want you to run "perl -V" and NOT "perl -v".
71
72        If your perl does not understand the "-V" option it is too
73        old. This module needs Perl version 5.004 or better.
74
75     b. The version of IO-Compress-Lzf you have.
76        If you have successfully installed IO-Compress-Lzf, this one-liner
77        will tell you:
78
79           perl -MIO::Compress::Lzf -e 'print qq[ver $IO::Compress::Lzf::VERSION\n]'
80
81        If you are  running windows use this
82
83           perl -MIO::Compress::Lzf -e "print qq[ver $IO::Compress::Lzf::VERSION\n]"
84
85        If you haven't installed IO-Compress-Lzf then search IO::Compress::Lzf.pm
86        for a line like this:
87
88          $VERSION = "2.101" ;
89
90 2. If you are having problems building IO-Compress-Lzf, send me a
91    complete log of what happened. Start by unpacking the IO-Compress-Lzf
92    module into a fresh directory and keep a log of all the steps
93
94        [edit config.in, if necessary]
95        perl Makefile.PL
96        make
97        make test TEST_VERBOSE=1
98
99Paul Marquess <pmqs@cpan.org>
100