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

..03-May-2022-

examples/H20-Feb-2021-13076

lib/IO/H20-Feb-2021-6,1591,181

private/H20-Feb-2021-382264

t/H20-Feb-2021-13,0477,998

ChangesH A D20-Feb-20214.5 KiB272150

MANIFESTH A D30-Jul-20201.9 KiB9190

META.jsonH A D20-Feb-20211.4 KiB5857

META.ymlH A D20-Feb-2021834 3231

Makefile.PLH A D20-Feb-20212 KiB7757

READMEH A D20-Feb-20212.5 KiB10064

README

1
2                            IO-Compress-Lzma
3
4                              Version 2.101
5
6                            20 Feburary 2021
7
8        Copyright (c) 2009-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
16lzma files/buffers.
17
18PREREQUISITES
19-------------
20
21Before you can build IO-Compress-Lzma you need to have the following
22installed on your system:
23
24    * Perl 5.006 or better.
25    * Compress::Raw::Lzma
26    * IO::Compress
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-Lzma, 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-Lzma/issues (preferred) or
53https://rt.cpan.org/Public/Dist/Display.html?Name=IO-Compress-Lzma.
54
55FEEDBACK
56--------
57
58How to report a problem with IO-Compress-Lzma.
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-Lzma you have.
76        If you have successfully installed IO-Compress-Lzma, this one-liner
77        will tell you:
78
79           perl -MIO::Compress::Lzma -e 'print qq[ver $IO::Compress::Lzma::VERSION\n]'
80
81        If you are  running windows use this
82
83           perl -MIO::Compress::Lzma -e "print qq[ver $IO::Compress::Lzma::VERSION\n]"
84
85        If you haven't installed IO-Compress-Lzma then search IO::Compress::Lzma.pm
86        for a line like this:
87
88          $VERSION = "2.101" ;
89
90 2. If you are having problems building IO-Compress-Lzma, send me a
91    complete log of what happened. Start by unpacking the IO-Compress-Lzma
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