1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

LibArchive: Add Zip file parser

This is based on the zip specification on PKWARE's zip specification
(https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT) and will
be used in the unzip utility and eventually in the zip utility.
This commit is contained in:
Idan Horowitz 2021-03-18 22:35:14 +02:00 committed by Andreas Kling
parent a809db90dd
commit caf4bde3a9
3 changed files with 357 additions and 2 deletions

View file

@ -1,6 +1,7 @@
set(SOURCES
TarStream.cpp
)
TarStream.cpp
Zip.cpp
)
serenity_lib(LibArchive archive)
target_link_libraries(LibArchive LibCore)