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.
34 lines
1.1 KiB
34 lines
1.1 KiB
11 months ago
|
package("mujs")
|
||
|
set_homepage("http://mujs.com/")
|
||
|
set_description("An embeddable Javascript interpreter in C.")
|
||
|
|
||
|
add_urls("https://mujs.com/downloads/mujs-$(version).tar.gz")
|
||
|
add_urls("https://github.com/ccxvii/mujs/archive/refs/tags/$(version).tar.gz",
|
||
|
"https://github.com/ccxvii/mujs.git")
|
||
|
|
||
|
add_versions("1.3.4", "c015475880f6a382e706169c94371a7dd6cc22078832f6e0865af8289c2ef42b")
|
||
|
|
||
|
if is_plat("linux", "bsd") then
|
||
|
add_syslinks("m")
|
||
|
end
|
||
|
|
||
|
add_includedirs("include", "include/mujs")
|
||
|
|
||
|
on_install(function (package)
|
||
|
io.writefile("xmake.lua", [[
|
||
|
add_rules("mode.release", "mode.debug")
|
||
|
target("mujs")
|
||
|
set_kind("$(kind)")
|
||
|
add_files("js*.c", "utf*.c", "regexp.c")
|
||
|
add_headerfiles("*.h", {prefixdir = "mujs"})
|
||
|
if is_plat("windows") and is_kind("shared") then
|
||
|
add_rules("utils.symbols.export_all")
|
||
|
end
|
||
|
]])
|
||
|
import("package.tools.xmake").install(package)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("js_newstate", {includes = "mujs/mujs.h"}))
|
||
|
end)
|