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