| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package("kenlm")
- set_homepage("https://kheafield.com/code/kenlm/")
- set_description("Faster and Smaller Language Model Queries.")
- set_license("LGPL-2.1-or-later")
- add_urls("https://github.com/kpu/kenlm.git")
- add_versions("2025.03.31", "4cb443e60b7bf2c0ddf3c745378f76cb59e254e5")
- if is_plat("windows", "msys", "mingw", "cygwin") then
- add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
- end
- add_configs("max_order", {description = "Maximum supported ngram order.", default = 6, type = "number"})
- if is_plat("linux", "bsd") then
- add_syslinks("pthread")
- end
- add_deps("cmake")
- add_deps("boost", {configs = {program_options = true, system = true, thread = true}})
- add_deps("zlib", "bzip2", "xz")
- add_includedirs("include/kenlm")
- on_load(function (package)
- package:add("defines", "KENLM_MAX_ORDER=" .. tostring(package:config("max_order")))
- package:add("links", "kenlm_builder", "kenlm", "kenlm_filter", "kenlm_util")
- end)
- on_install("!iphoneos and !wasm", function (package)
- io.replace("CMakeLists.txt", "unit_test_framework", "", {plain = true})
- io.replace("CMakeLists.txt", "if (WIN32)\n set(Boost", "if (0)\nset(Boost", {plain = true})
- io.replace("cmake/KenLMFunctions.cmake", "function(AddExes)", "function(AddExes)\nreturn()", {plain = true})
- local configs = {"-DBUILD_TESTING=OFF"}
- 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"))
- table.insert(configs, "-DKENLM_MAX_ORDER=" .. tostring(package:config("max_order")))
- local opt = { cxflags = {} }
- if package:is_plat("windows") then
- table.insert(opt.cxflags, "-DNOMINMAX")
- if package:has_tool("cxx", "cl", "clang_cl") then
- table.insert(opt.cxflags, "/EHsc")
- end
- end
- if not package:dep("xz"):config("shared") then
- table.insert(opt.cxflags, "-DLZMA_API_STATIC")
- end
- opt.packagedeps = {"zlib", "bzip2", "xz"}
- import("package.tools.cmake").install(package, configs, opt)
- end)
- on_test(function (package)
- assert(package:check_cxxsnippets({test = [[
- void test() {
- lm::ngram::Model model("hello");
- }
- ]]}, {configs = {languages = "c++11"}, includes = "lm/model.hh"}))
- end)
|