add miniz (#375)
parent
9c42388257
commit
2023e9d083
2 changed files with 30 additions and 0 deletions
@ -0,0 +1,29 @@ |
||||
package("miniz") |
||||
|
||||
set_homepage("https://github.com/richgel999/miniz/") |
||||
set_description("miniz: Single C source file zlib-replacement library") |
||||
set_license("MIT") |
||||
|
||||
add_urls("https://github.com/richgel999/miniz/archive/refs/tags/2.1.0.tar.gz", |
||||
"https://github.com/richgel999/miniz.git") |
||||
add_versions("2.1.0", "95f9b23c92219ad2670389a23a4ed5723b7329c82c3d933b7047673ecdfc1fea") |
||||
|
||||
on_install(function (package) |
||||
io.writefile("miniz_export.h", "#define MINIZ_EXPORT") |
||||
io.writefile("xmake.lua", [[ |
||||
add_rules("mode.debug", "mode.release") |
||||
target("miniz") |
||||
set_kind("static") |
||||
add_files("miniz.c", "miniz_zip.c", "miniz_tinfl.c", "miniz_tdef.c") |
||||
add_headerfiles("miniz.h", "miniz_common.h", "miniz_zip.h", "miniz_tinfl.h", "miniz_tdef.h") |
||||
]]) |
||||
local configs = {} |
||||
if package:is_plat("linux") 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("mz_compress", {includes = "miniz.h"})) |
||||
end) |
Loading…
Reference in new issue