Thanks to visit codestin.com
Credit goes to github.com

Skip to content

libzip ported to the zig build system

License

Notifications You must be signed in to change notification settings

sashka/libzip

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CI

libzip

This is libzip, packaged for Zig.

Installation

First, update your build.zig.zon:

# Initialize a `zig build` project if you haven't already
zig init
zig fetch --save git+https://github.com/allyourcodebase/libzip.git#1.11.2

You can then import libzip in your build.zig with:

const bzip_dependency = b.dependency("libzip", .{
    .target = target,
    .optimize = optimize,
});
your_exe.linkLibrary(bzip_dependency.artifact("zip"));

Notes

Crypto and LZMA are not supported right now.

About

libzip ported to the zig build system

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Zig 78.5%
  • C 21.5%