package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.3 KiB
28 lines
1.3 KiB
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/$(version).tar.gz", |
|
"https://github.com/richgel999/miniz.git") |
|
add_versions("2.1.0", "95f9b23c92219ad2670389a23a4ed5723b7329c82c3d933b7047673ecdfc1fea") |
|
add_versions("2.2.0", "bd1136d0a1554520dcb527a239655777148d90fd2d51cf02c36540afc552e6ec") |
|
|
|
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true}) |
|
|
|
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_export.h", "miniz_common.h", "miniz_zip.h", "miniz_tinfl.h", "miniz_tdef.h") |
|
]]) |
|
import("package.tools.xmake").install(package) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("mz_compress", {includes = "miniz.h"})) |
|
end)
|
|
|