|
@@ -0,0 +1,37 @@
|
|
|
+package("minizip")
|
|
|
+
|
|
|
+ set_homepage("https://www.zlib.net/")
|
|
|
+ set_description("Mini zip and unzip based on zlib")
|
|
|
+
|
|
|
+ add_urls("https://github.com/madler/zlib/archive/v$(version).tar.gz")
|
|
|
+ add_versions("1.2.10", "42cd7b2bdaf1c4570e0877e61f2fdc0bce8019492431d054d3d86925e5058dc5")
|
|
|
+ add_versions("1.2.11", "629380c90a77b964d896ed37163f5c3a34f6e6d897311f1df2a7016355c45eff")
|
|
|
+
|
|
|
+ add_deps("zlib")
|
|
|
+ on_install(function (package)
|
|
|
+ os.cd(path.join("contrib", "minizip"))
|
|
|
+ io.writefile("xmake.lua", [[
|
|
|
+ add_rules("mode.debug", "mode.release")
|
|
|
+ add_requires("zlib")
|
|
|
+ target("minizip")
|
|
|
+ set_kind("$(kind)")
|
|
|
+ add_files("zip.c", "unzip.c", "mztools.c", "ioapi.c")
|
|
|
+ add_headerfiles("crypt.h", "zip.h", "unzip.h", "ioapi.h", "mztools.h")
|
|
|
+ add_packages("zlib")
|
|
|
+ if is_plat("windows") then
|
|
|
+ add_files("iowin32.c")
|
|
|
+ add_headerfiles("iowin32.h")
|
|
|
+ end
|
|
|
+ ]])
|
|
|
+ local configs = {}
|
|
|
+ if package:config("shared") then
|
|
|
+ configs.kind = "shared"
|
|
|
+ elseif not package:is_plat("windows", "mingw") and package:config("pic") ~= false then
|
|
|
+ configs.cxflags = "-fPIC"
|
|
|
+ end
|
|
|
+ import("package.tools.xmake").install(package, configs)
|
|
|
+ end)
|
|
|
+
|
|
|
+ on_test(function (package)
|
|
|
+ assert(package:has_cfuncs("inflate", {includes = "zip.h"}))
|
|
|
+ end)
|