Debian lenny version packages
[pkg-perl] / deb-src / libio-compress-base-perl / libio-compress-base-perl-2.012 / README
1
2                              IO-Compress-Base
3
4                              Version 2.012
5
6                               15th July 2008
7
8        Copyright (c) 2005-2008 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
12 DESCRIPTION
13 -----------
14
15 This module is the base class for all IO::Compress and IO::Uncompress
16 modules.
17
18 PREREQUISITES
19 -------------
20
21 Before you can build IO-Compress-Base you need to have the following
22 installed on your system:
23
24     * Perl 5.004 or better. 
25
26 BUILDING THE MODULE
27 -------------------
28
29 Assuming you have met all the prerequisites, the module can now be built
30 using this sequence of commands:
31
32     perl Makefile.PL
33     make
34     make test
35
36 INSTALLATION
37 ------------
38
39 To install IO-Compress-Base, run the command below:
40
41     make install
42
43 TROUBLESHOOTING
44 ---------------
45
46 FEEDBACK
47 --------
48
49 How to report a problem with IO-Compress-Base.
50
51 To help me help you, I need all of the following information:
52
53  1. The Versions of everything relevant.
54     This includes:
55
56      a. The *complete* output from running this
57      
58             perl -V
59      
60         Do not edit the output in any way.
61         Note, I want you to run "perl -V" and NOT "perl -v".
62      
63         If your perl does not understand the "-V" option it is too
64         old. This module needs Perl version 5.004 or better.     
65
66      b. The version of IO-Compress-Base you have. 
67         If you have successfully installed IO-Compress-Base, this one-liner
68         will tell you:
69
70            perl -MIO::Compress::Base -e 'print qq[ver $IO::Compress::Base::VERSION\n]'
71
72         If you are  running windows use this
73
74            perl -MIO::Compress::Base -e "print qq[ver $IO::Compress::Base::VERSION\n]"
75
76         If you haven't installed IO-Compress-Base then search IO::Compress::Base.pm
77         for a line like this:
78
79           $VERSION = "2.012" ;
80
81  2. If you are having problems building IO-Compress-Base, send me a
82     complete log of what happened. Start by unpacking the IO-Compress-Base
83     module into a fresh directory and keep a log of all the steps
84
85         [edit config.in, if necessary]
86         perl Makefile.PL
87         make
88         make test TEST_VERBOSE=1          
89
90 Paul Marquess <pmqs@cpan.org>