1234567891011121314151617181920212223242526272829 |
- package("squirrel")
- set_homepage("http://www.squirrel-lang.org")
- set_description("Official repository for the programming language Squirrel")
- set_license("MIT")
- add_urls("https://github.com/albertodemichelis/squirrel/archive/refs/tags/$(version).tar.gz",
- "https://github.com/albertodemichelis/squirrel.git")
- add_versions("v3.2", "02805414cfadd5bbb921891d3599b83375a40650abd6404a8ab407dc5e86a996")
- add_patches("3.2", "https://github.com/albertodemichelis/squirrel/commit/79711c69e2c4193b4b6f98c9162856d61ddaeb9f.patch", "908ef342bda194216d4d2c08f0ecdbd1518e368ef3b6ccdc15e3593c5b7725c2")
- add_deps("cmake")
- on_install("!wasm and !iphoneos", function (package)
- local configs = {}
- table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
- table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
- if package:config("shared") then
- table.join2(configs, {"-DDISABLE_STATIC=ON", "-DDISABLE_DYNAMIC=OFF"})
- else
- table.join2(configs, {"-DDISABLE_STATIC=OFF", "-DDISABLE_DYNAMIC=ON"})
- end
- import("package.tools.cmake").install(package, configs)
- end)
- on_test(function (package)
- assert(package:has_cfuncs("sq_open", {includes = "squirrel.h"}))
- end)
|