package("dpp") set_homepage("https://github.com/brainboxdotcc/DPP") set_description("D++ Extremely Lightweight C++ Discord Library") set_license("Apache-2.0") add_urls("https://github.com/brainboxdotcc/DPP/archive/refs/tags/$(version).tar.gz", "https://github.com/brainboxdotcc/DPP.git") add_versions("v10.0.10", "2a1c26f606298e5b683d1e140219c434e61c4b22e8510fa2a2d5f7b6758dff95") add_patches("v10.0.10", path.join(os.scriptdir(), "patches", "v10.0.8", "static_export.patch"), "d18487580faa9af21862bcff30ddfa5d5ab5cda6aa5f779bcc1787a96ca66447") add_patches("v10.0.10", path.join(os.scriptdir(), "patches", "v10.0.10", "permission_include.patch"), "4fdf8e406c7f610453090253bf1640e42c47a06968f65a4a21d01104a2d04fd4") add_versions("v10.0.8", "7a16d31841fc67fabcafbc33abb1a6b2ac472202df7e8c48542f77e089de08e3") add_patches("v10.0.8", path.join(os.scriptdir(), "patches", "v10.0.8", "static_export.patch"), "d18487580faa9af21862bcff30ddfa5d5ab5cda6aa5f779bcc1787a96ca66447") add_deps("fmt", "nlohmann_json", "libsodium", "libopus", "openssl", "zlib") if is_plat("linux", "macosx") then add_syslinks("pthread") end on_load("windows", "mingw", function (package) if not package:config("shared") then package:add("defines", "DPP_STATIC") end end) on_install("windows", "linux", "macosx", "mingw", function (package) -- fix dpp dependencies for _, file in ipairs(table.join(os.files("include/**.h"), os.files("src/**.cpp"))) do io.replace(file, "#include ", "#include ", {plain = true}) os.rmdir("include/dpp/fmt") os.rmdir("include/dpp/nlohmann") os.cp(path.join(package:scriptdir(), "port", "xmake.lua"), "xmake.lua") import("package.tools.xmake").install(package) end) on_test(function (package) assert(package:check_cxxsnippets({test = [[ void test() { dpp::cluster bot(std::getenv("BOT_TOKEN")); bot.on_ready([&bot](auto event) { if (dpp::run_once()) { bot.global_command_create( dpp::slashcommand("ping", "Ping pong!", bot.me.id) ); } }); bot.start(false); } ]]}, {configs = {languages = "c++17"}, includes = "dpp/dpp.h"})) end)