image_optim_pack 0.12.0-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.dockerignore +10 -0
- data/.github/dependabot.yml +6 -0
- data/.github/workflows/build.yml +47 -0
- data/.github/workflows/check.yml +33 -0
- data/.github/workflows/docker-build.yml +29 -0
- data/.github/workflows/livecheck.yml +35 -0
- data/.github/workflows/rubocop.yml +16 -0
- data/.gitignore +7 -0
- data/.rubocop.yml +97 -0
- data/CHANGELOG.markdown +546 -0
- data/Dockerfile +184 -0
- data/Dockerfile.debian +184 -0
- data/Gemfile +10 -0
- data/LICENSE.txt +27 -0
- data/Makefile +543 -0
- data/README.markdown +121 -0
- data/acknowledgements/7z.txt +56 -0
- data/acknowledgements/advancecomp.txt +674 -0
- data/acknowledgements/bmp2png.txt +8 -0
- data/acknowledgements/cexcept.txt +8 -0
- data/acknowledgements/gifread.txt +14 -0
- data/acknowledgements/gifsicle.txt +343 -0
- data/acknowledgements/iqa.txt +30 -0
- data/acknowledgements/jhead.txt +12 -0
- data/acknowledgements/jpeg-archive.txt +20 -0
- data/acknowledgements/jpegoptim.txt +339 -0
- data/acknowledgements/libjpeg-turbo.txt +27 -0
- data/acknowledgements/libjpeg-x86-simd.txt +17 -0
- data/acknowledgements/libjpeg.txt +64 -0
- data/acknowledgements/liblcms2.txt +21 -0
- data/acknowledgements/libpng.txt +90 -0
- data/acknowledgements/mozjpeg.txt +7 -0
- data/acknowledgements/optipng-authors.txt +26 -0
- data/acknowledgements/optipng.txt +21 -0
- data/acknowledgements/oxipng.txt +20 -0
- data/acknowledgements/pngcrush.txt +35 -0
- data/acknowledgements/pngout.txt +9 -0
- data/acknowledgements/pngquant.txt +56 -0
- data/acknowledgements/smallfry.txt +13 -0
- data/acknowledgements/zlib.txt +34 -0
- data/acknowledgements/zopfli-contributors.txt +6 -0
- data/acknowledgements/zopfli.txt +201 -0
- data/checksums.mk +17 -0
- data/image_optim_pack-darwin-arm64.gemspec +3 -0
- data/image_optim_pack-darwin-x86_64.gemspec +3 -0
- data/image_optim_pack-linux-x86_64.gemspec +3 -0
- data/image_optim_pack.gemspec +62 -0
- data/lib/image_optim/pack.rb +119 -0
- data/lib/image_optim_pack.rb +3 -0
- data/patches/pngcrush.patch +15 -0
- data/script/extract +19 -0
- data/script/livecheck +263 -0
- data/script/platform_downloads +59 -0
- data/script/run +131 -0
- data/spec/image_optim/pack_spec.rb +116 -0
- data/spec/image_optim_spec.rb +42 -0
- data/spec/spec_helper.rb +10 -0
- data/vendor/darwin-arm64/advpng +0 -0
- data/vendor/darwin-arm64/gifsicle +0 -0
- data/vendor/darwin-arm64/jhead +0 -0
- data/vendor/darwin-arm64/jpeg-recompress +0 -0
- data/vendor/darwin-arm64/jpegoptim +0 -0
- data/vendor/darwin-arm64/jpegtran +0 -0
- data/vendor/darwin-arm64/libjpeg.dylib +0 -0
- data/vendor/darwin-arm64/liblcms2.dylib +0 -0
- data/vendor/darwin-arm64/libpng.dylib +0 -0
- data/vendor/darwin-arm64/libz.dylib +0 -0
- data/vendor/darwin-arm64/optipng +0 -0
- data/vendor/darwin-arm64/oxipng +0 -0
- data/vendor/darwin-arm64/pngcrush +0 -0
- data/vendor/darwin-arm64/pngout +0 -0
- data/vendor/darwin-arm64/pngquant +0 -0
- metadata +199 -0
@@ -0,0 +1,56 @@
|
|
1
|
+
7-Zip
|
2
|
+
~~~~~
|
3
|
+
License for use and distribution
|
4
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
5
|
+
|
6
|
+
7-Zip Copyright (C) 1999-2014 Igor Pavlov.
|
7
|
+
|
8
|
+
Licenses for files are:
|
9
|
+
|
10
|
+
1) 7z.dll: GNU LGPL + unRAR restriction
|
11
|
+
2) All other files: GNU LGPL
|
12
|
+
|
13
|
+
The GNU LGPL + unRAR restriction means that you must follow both
|
14
|
+
GNU LGPL rules and unRAR restriction rules.
|
15
|
+
|
16
|
+
|
17
|
+
Note:
|
18
|
+
You can use 7-Zip on any computer, including a computer in a commercial
|
19
|
+
organization. You don't need to register or pay for 7-Zip.
|
20
|
+
|
21
|
+
|
22
|
+
GNU LGPL information
|
23
|
+
--------------------
|
24
|
+
|
25
|
+
This library is free software; you can redistribute it and/or
|
26
|
+
modify it under the terms of the GNU Lesser General Public
|
27
|
+
License as published by the Free Software Foundation; either
|
28
|
+
version 2.1 of the License, or (at your option) any later version.
|
29
|
+
|
30
|
+
This library is distributed in the hope that it will be useful,
|
31
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
32
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
33
|
+
Lesser General Public License for more details.
|
34
|
+
|
35
|
+
You can receive a copy of the GNU Lesser General Public License from
|
36
|
+
http://www.gnu.org/
|
37
|
+
|
38
|
+
|
39
|
+
unRAR restriction
|
40
|
+
-----------------
|
41
|
+
|
42
|
+
The decompression engine for RAR archives was developed using source
|
43
|
+
code of unRAR program.
|
44
|
+
All copyrights to original unRAR code are owned by Alexander Roshal.
|
45
|
+
|
46
|
+
The license for original unRAR code has the following restriction:
|
47
|
+
|
48
|
+
The unRAR sources cannot be used to re-create the RAR compression algorithm,
|
49
|
+
which is proprietary. Distribution of modified unRAR sources in separate form
|
50
|
+
or as a part of other software is permitted, provided that it is clearly
|
51
|
+
stated in the documentation and source comments that the code may
|
52
|
+
not be used to develop a RAR (WinRAR) compatible archiver.
|
53
|
+
|
54
|
+
|
55
|
+
--
|
56
|
+
Igor Pavlov
|