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.

52 lines
1.8 KiB

4 years ago
package("lz4")
set_homepage("https://www.lz4.org/")
set_description("LZ4 - Extremely fast compression")
set_urls("https://github.com/lz4/lz4/archive/$(version).tar.gz",
"https://github.com/lz4/lz4.git")
add_versions("v1.9.3", "030644df4611007ff7dc962d981f390361e6c97a34e5cbc393ddfbe019ffe2c1")
on_load("windows", function (package)
if package:config("shared") then
package:add("defines", "LZ4_DLL_IMPORT")
end
end)
if is_plat("macosx") then
add_extsources("brew::lz4")
elseif is_plat("linux") then
add_extsources("pacman::lz4")
end
4 years ago
on_install(function (package)
io.writefile("xmake.lua", ([[
set_version("%s")
4 years ago
add_rules("mode.debug", "mode.release")
target("lz4")
set_kind("$(kind)")
add_rules("utils.install.pkgconfig_importfiles", {filename = "liblz4.pc"})
add_files("lib/*.c")
add_headerfiles("lib/lz4.h", "lib/lz4hc.h", "lib/lz4frame.h")
add_defines("XXH_NAMESPACE=LZ4_")
4 years ago
if is_kind("shared") and is_plat("windows") then
add_defines("LZ4_DLL_EXPORT")
end
if is_kind("static") then
add_defines("LZ4_HC_STATIC_LINKING_ONLY", "LZ4_STATIC_LINKING_ONLY")
end
]]):format(package:version_str()))
4 years ago
local configs = {}
if package:config("shared") then
configs.kind = "shared"
end
if package:is_plat("linux") and package:config("pic") ~= false then
configs.cxflags = "-fPIC"
end
4 years ago
import("package.tools.xmake").install(package, configs)
end)
on_test(function (package)
assert(package:has_cfuncs("LZ4_compress_default", {includes = {"lz4.h"}}))
end)