| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package("avisynthplus")
- set_homepage("http://avs-plus.net")
- set_description("AviSynth with improvements")
- set_license("GPL-2.0")
- add_urls("https://github.com/AviSynth/AviSynthPlus.git", {submodules = false})
- add_versions("2026.01.01", "f2f4e318a5ba161d4945185f11c6a27e7aafa92b")
- if is_plat("windows", "mingw") then
- add_syslinks("user32", "gdi32", "advapi32", "ole32", "vfw32", "winmm", "msacm32", "imagehlp")
- end
- add_deps("cmake")
- add_deps("ghc_filesystem")
- if on_check then
- on_check("mingw", function (package)
- assert(package:check_sizeof("void*") == "8", "package(avisynthplus) MinGW requires to be 64-bit, 32-bit is not supported.")
- end)
- end
- on_load("windows", "mingw", function (package)
- if not package:config("shared") then
- package:add("defines", "AVS_STATIC_LIB")
- end
- end)
- on_install("!wasm and !android and !cross", function (package)
- io.replace("avs_core/CMakeLists.txt", "if (MINGW)", "if (0)", {plain = true})
- local configs = {
- "-DENABLE_PLUGINS=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"))
- import("package.tools.cmake").install(package, configs)
- end)
- on_test(function (package)
- assert(package:check_cxxsnippets({test = [[
- void test() {
- AvisynthError("test");
- }
- ]]}, {configs = {languages = "c++17"}, includes = "avisynth/avisynth.h"}))
- end)
|