]>
Commit | Line | Data |
---|---|---|
1 | IO-Compress-Brotli version 0.001001 | |
2 | =================================== | |
3 | ||
4 | Brotli is a data compression format primarily used in web fonts and | |
5 | (more recently) HTTP compression. | |
6 | ||
7 | This distribution wraps the official Brotli source code[0], offering a | |
8 | module for decompressing Brotli buffers and streams, | |
9 | IO::Uncompress::Brotli. Compression will be supported in a future | |
10 | release. | |
11 | ||
12 | [0]: https://github.com/google/brotli | |
13 | ||
14 | INSTALLATION | |
15 | ||
16 | To install this module type the following: | |
17 | ||
18 | perl Makefile.PL | |
19 | make | |
20 | make test | |
21 | make install | |
22 | ||
23 | DEPENDENCIES | |
24 | ||
25 | This module requires these other modules and libraries: | |
26 | ||
27 | * File::Slurp | |
28 | * Getopt::Long | |
29 | ||
30 | Additionally, it requires a C compiler. | |
31 | ||
32 | COPYRIGHT AND LICENCE | |
33 | ||
34 | Copyright (C) 2015 by Marius Gavrilescu | |
35 | ||
36 | This library is free software; you can redistribute it and/or modify | |
37 | it under the same terms as Perl itself, either Perl version 5.20.2 or, | |
38 | at your option, any later version of Perl 5 you may have available. | |
39 | ||
40 | ||
41 | The distribution contains files from the Brotli source code, which are | |
42 | licensed under the Expat license: | |
43 | ||
44 | Copyright (c) 2009, 2010, 2013-2015 by the Brotli Authors. | |
45 | ||
46 | Permission is hereby granted, free of charge, to any person obtaining a copy | |
47 | of this software and associated documentation files (the "Software"), to deal | |
48 | in the Software without restriction, including without limitation the rights | |
49 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
50 | copies of the Software, and to permit persons to whom the Software is | |
51 | furnished to do so, subject to the following conditions: | |
52 | ||
53 | The above copyright notice and this permission notice shall be included in | |
54 | all copies or substantial portions of the Software. | |
55 | ||
56 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
57 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
58 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
59 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
60 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
61 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
62 | THE SOFTWARE. |