1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package("workflow")
- set_homepage("https://github.com/sogou/workflow")
- set_description("C++ Parallel Computing and Asynchronous Networking Engine")
- set_license("Apache-2.0")
- add_urls("https://github.com/sogou/workflow/archive/refs/tags/$(version).tar.gz",
- "https://github.com/sogou/workflow.git")
- add_versions("v0.9.11", "71b5531728d6b4f3666176dbc45d680350518af8")
- add_versions("v0.10.1", "315eb1b1b5411e807e5ecc45ba5aa7db1d4f7c28")
- add_versions("v0.10.2", "42d87f4f9eaa80e882ccdd71cd81d20899050266")
- add_deps("cmake", "openssl")
- if is_plat("linux") then
- add_syslinks("pthread", "dl")
- end
- on_install("linux", "macosx", "android", function (package)
- local configs = {}
- table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
- table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
- if package:is_plat("android") then
- io.replace("src/CMakeLists.txt", "add_subdirectory(client)", "add_subdirectory(client)\nlink_libraries(ssl crypto)", {plain = true})
- end
- import("package.tools.cmake").install(package, configs, {packagedeps = "openssl"})
- if package:config("shared") then
- os.tryrm(path.join(package:installdir("lib"), "*.a"))
- else
- os.tryrm(path.join(package:installdir("lib"), "*.so"))
- os.tryrm(path.join(package:installdir("lib"), "*.dylib"))
- end
- end)
- on_test(function (package)
- assert(package:check_cxxsnippets({test = [[
- #include <stdio.h>
- #include "workflow/WFHttpServer.h"
- static void test() {
- WFHttpServer server([](WFHttpTask *task) {
- task->get_resp()->append_output_body("<html>Hello World!</html>");
- });
- if (server.start(8888) == 0) { // start server on port 8888
- server.stop();
- }
- }
- ]]}, {configs = {languages = "c++11"}}))
- end)
|