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.
25 lines
835 B
25 lines
835 B
2 years ago
|
package("orangeduck_mpc")
|
||
|
|
||
|
set_homepage("https://github.com/orangeduck/mpc")
|
||
|
set_description("A Parser Combinator library for C")
|
||
|
|
||
|
add_urls("https://github.com/orangeduck/mpc/archive/refs/tags/$(version).tar.gz",
|
||
|
"https://github.com/orangeduck/mpc.git")
|
||
|
add_versions("0.9.0", "da6e798accec57d7b0512ecc38adc151961adefde09811c1c25ee993a653e47c")
|
||
|
|
||
|
on_install(function (package)
|
||
|
io.writefile("xmake.lua", [[
|
||
|
add_rules("mode.debug", "mode.release")
|
||
|
target("mpc")
|
||
|
set_kind("static")
|
||
|
add_files("mpc.c")
|
||
|
add_headerfiles("mpc.h")
|
||
|
]])
|
||
|
local configs = {}
|
||
|
import("package.tools.xmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("mpc_new", {includes = "mpc.h"}))
|
||
|
end)
|