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.
31 lines
1.0 KiB
31 lines
1.0 KiB
package("libaco") |
|
|
|
set_homepage("https://github.com/hnes/libaco") |
|
set_description("A blazing fast and lightweight C asymmetric coroutine library") |
|
set_license("Apache-2.0") |
|
|
|
add_urls("https://github.com/hnes/libaco/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/hnes/libaco.git") |
|
|
|
add_versions("v1.2.4", "25e0777ec2c686cc8c8433537d9b3694d196b0287abe6df4f0c21f8605fa5a06") |
|
|
|
on_install("macosx", "linux", function (package) |
|
io.writefile("xmake.lua", [[ |
|
add_rules("mode.debug", "mode.release") |
|
|
|
target("libaco") |
|
set_kind("$(kind)") |
|
add_files("acosw.S") |
|
add_headerfiles("aco.h") |
|
add_files("aco.c") |
|
]]) |
|
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("aco_resume", {includes = "aco.h"})) |
|
end)
|
|
|