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.
 
 
 

33 lines
1.2 KiB

package("zstd")
set_homepage("https://www.zstd.net/")
set_description("Zstandard - Fast real-time compression algorithm")
set_urls("https://github.com/facebook/zstd/archive/$(version).tar.gz",
"https://github.com/facebook/zstd.git")
add_versions("v1.4.5", "734d1f565c42f691f8420c8d06783ad818060fc390dee43ae0a89f86d0a4f8c2")
on_install(function (package)
io.writefile("xmake.lua", [[
add_rules("mode.debug", "mode.release")
target("zstd")
set_kind("$(kind)")
add_files("lib/common/*.c")
add_files("lib/compress/*.c")
add_files("lib/decompress/*.c")
add_headerfiles("lib/zstd.h")
if is_kind("shared") and is_plat("windows") then
add_defines("ZSTD_DLL_EXPORT")
end
]])
local configs = {}
if package:config("shared") then
configs.kind = "shared"
end
import("package.tools.xmake").install(package, configs)
end)
on_test(function (package)
assert(package:has_cfuncs("ZSTD_compress", {includes = {"zstd.h"}}))
assert(package:has_cfuncs("ZSTD_decompress", {includes = {"zstd.h"}}))
end)