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