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.
43 lines
1.4 KiB
43 lines
1.4 KiB
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") |
|
|
|
add_deps("xxhash") |
|
|
|
on_load("windows", function (package) |
|
if package:config("shared") then |
|
package:add("defines", "LZ4_DLL_IMPORT") |
|
end |
|
end) |
|
|
|
on_install(function (package) |
|
io.writefile("xmake.lua", [[ |
|
add_rules("mode.debug", "mode.release") |
|
add_requires("xxhash") |
|
target("lz4") |
|
set_kind("$(kind)") |
|
add_files("lib/*.c|xxhash.c") |
|
add_headerfiles("lib/lz4.h", "lib/lz4hc.h", "lib/lz4frame.h") |
|
add_packages("xxhash") |
|
if is_kind("shared") and is_plat("windows") then |
|
add_defines("LZ4_DLL_EXPORT") |
|
end |
|
]]) |
|
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 |
|
import("package.tools.xmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("LZ4_compress_default", {includes = {"lz4.h"}})) |
|
end)
|
|
|