Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmqs/io-compress-lzop
https://github.com/pmqs/io-compress-lzop
compression lzo lzo-compression perl perl-module perl5 uncompress
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/pmqs/io-compress-lzop
- Owner: pmqs
- Created: 2019-03-16T17:01:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T15:44:32.000Z (4 months ago)
- Last Synced: 2024-08-28T17:05:25.388Z (4 months ago)
- Topics: compression, lzo, lzo-compression, perl, perl-module, perl5, uncompress
- Language: Perl
- Size: 370 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
IO-Compress-Lzop
Version 2.213
28 August 2024
Copyright (c) 2005-2024 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.DESCRIPTION
-----------This module provides a Perl interface to allow reading and writing of
lzop files/buffers.PREREQUISITES
-------------Before you can build IO-Compress-Lzop you need to have the following
installed on your system:* Perl 5.006 or better.
* Compress::LZO
* IO::Compress::BaseBUILDING THE MODULE
-------------------Assuming you have met all the prerequisites, the module can now be built
using this sequence of commands:perl Makefile.PL
make
make testINSTALLATION
------------To install IO-Compress-Lzop, run the command below:
make install
TROUBLESHOOTING
---------------SUPPORT
-------General feedback/questions/bug reports should be sent to
https://github.com/pmqs/IO-Compress-Lzop/issuesFEEDBACK
--------How to report a problem with IO-Compress-Lzop.
To help me help you, I need all of the following information:
1. The Versions of everything relevant.
This includes:a. The *complete* output from running this
perl -V
Do not edit the output in any way.
Note, I want you to run "perl -V" and NOT "perl -v".If your perl does not understand the "-V" option it is too
old. This module needs Perl version 5.004 or better.b. The version of IO-Compress-Lzop you have.
If you have successfully installed IO-Compress-Lzop, this one-liner
will tell you:perl -MIO::Compress::Lzop -e 'print qq[ver $IO::Compress::Lzop::VERSION\n]'
If you are running windows use this
perl -MIO::Compress::Lzop -e "print qq[ver $IO::Compress::Lzop::VERSION\n]"
If you haven't installed IO-Compress-Lzop then search IO::Compress::Lzop.pm
for a line like this:$VERSION = "2.213" ;
2. If you are having problems building IO-Compress-Lzop, send me a
complete log of what happened. Start by unpacking the IO-Compress-Lzop
module into a fresh directory and keep a log of all the steps, including
the setting of configuration environment variables (if applicable).[edit config.in or set environment varialbes, if necessary]
perl Makefile.PL
make
make test TEST_VERBOSE=1Paul Marquess