userapps icon indicating copy to clipboard operation
userapps copied to clipboard

[apps][minizip] add minizip app & 增加 minizip 应用

Open WCX1024979076 opened this issue 1 year ago • 7 comments

增加minizip应用和repo,目前在qemu-virt64-aarch64功能上测试通过,测试流程如下。

msh />cd tmp
msh /tmp>echo test a.txt
msh /tmp>echo test b.txt
msh /tmp>minizip -o -9 target.zip a.txt b.txt
msh /tmp>MiniZip 1.01b, demo of zLib + Zip package written by Gilles Vollant
more info at http://www.winimage.com/zLibDll/minizip.html

creating target.zip

msh /tmp>rm a.txt b.txt
msh /tmp>miniunz -l target.zip
msh /tmp>MiniUnz 1.01b, demo of zLib + Unz package written by Gilles Vollant
more info at http://www.winimage.com/zLibDll/minizip.html

target.zip opened
 Length  Method   Size  Ratio   Date    Time   CRC-32     Name
 ------  ------   ----  -----   ----    ----   ------     ----
      4  Defl:X       6 150%  01-01-50  00:00  d87f7e0c   a.txt
      4  Defl:X       6 150%  01-01-50  00:00  d87f7e0c   b.txt

msh /tmp>miniunz -x target.zip
msh /tmp>MiniUnz 1.01b, demo of zLib + Unz package written by Gilles Vollant
more info at http://www.winimage.com/zLibDll/minizip.html

target.zip opened
 extracting: a.txt
 extracting: b.txt

WCX1024979076 avatar Jul 27 '23 09:07 WCX1024979076