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.
49 lines
1.7 KiB
49 lines
1.7 KiB
package("ls-hpack") |
|
set_homepage("https://github.com/litespeedtech/ls-hpack") |
|
set_description("LiteSpeed HPACK (RFC7541) Library") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/litespeedtech/ls-hpack/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/litespeedtech/ls-hpack.git") |
|
|
|
add_versions("v2.3.4", "db6775ce6aea2db7f90bdb4a798d2b21bdf88493da97cfd4eb40e9aa375d77c0") |
|
add_versions("v2.3.3", "3d7d539bd659fefc7168fb514368065cb12a1a7a0946ded60e4e10f1637f1ea2") |
|
|
|
add_deps("xxhash") |
|
|
|
on_install(function (package) |
|
io.writefile("xmake.lua", [[ |
|
add_rules("mode.debug", "mode.release") |
|
|
|
add_requires("xxhash") |
|
add_packages("xxhash") |
|
|
|
target("ls-hpack") |
|
set_kind("$(kind)") |
|
add_files("*.c") |
|
add_headerfiles("*.h") |
|
|
|
add_defines("XXH_HEADER_NAME=<xxhash.h>") |
|
|
|
if is_plat("windows") then |
|
add_includedirs("compat/windows") |
|
add_headerfiles("compat/windows/(sys/*.h)") |
|
|
|
if is_kind("shared") then |
|
add_rules("utils.symbols.export_all") |
|
end |
|
end |
|
|
|
on_config(function(target) |
|
if not target:has_cincludes("sys/queue.h") then |
|
target:add("includedirs", "compat/queue") |
|
target:add("headerfiles", "compat/queue/(sys/*.h)") |
|
end |
|
end) |
|
]]) |
|
import("package.tools.xmake").install(package) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("lshpack_enc_init", {includes = "lshpack.h"})) |
|
end)
|
|
|