Little CMS, packaged for the Zig build system.
First, update your build.zig.zon:
zig fetch --save git+https://github.com/allyourcodebase/lcms2.git
Then in your build.zig:
const lcms2 = b.dependency("lcms2", .{ .target = target, .optimize = optimize });
exe.linkLibrary(lcms2.artifact("lcms2"));