123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package("protobuf-cpp")
- set_homepage("https://developers.google.com/protocol-buffers/")
- set_description("Google's data interchange format for cpp")
- add_urls("https://github.com/protocolbuffers/protobuf/releases/download/v$(version)", {version = function (version)
- if version:le("3.19.4") then
- return version .. "/protobuf-cpp-" .. version .. ".zip"
- else
- return version .. "/protobuf-" .. version .. ".zip"
- end
- end})
- add_versions("27.3", "a49147217f69e8d19aab0cc5c0059d6201261f5cb62145f8ab4ac8b94e7ffa86")
- add_versions("27.2", "7b4554f730a41f5c595cef3502038a69b8954c30d8ec9c62a167d5e1ebd8c210")
- add_versions("27.0", "3e1148db090ff21226c1888ef39fa7bc7790042be21ff4289fd21ce1735f3455")
- add_versions("26.1", "e15c272392df84ae95797759c685a9225fe5e88838bab3e0650c29239bdfccdd")
- add_versions("3.8.0", "91ea92a8c37825bd502d96af9054064694899c5c7ecea21b8d11b1b5e7e993b5")
- add_versions("3.12.0", "da826a3c48a9cae879928202d6fe06afb15aaee129e9035d6510cc776ddfa925")
- add_versions("3.12.3", "74da289e0d0c24b2cb097f30fdc09fa30754175fd5ebb34fae4032c6d95d4ce3")
- add_versions("3.13.0", "f7b99f47822b0363175a6751ab59ccaa4ee980bf1198f11a4c3cef162698dde3")
- add_versions("3.14.0", "87d6e96166cf5cafc16f2bcfa91c0b54f48bab38538285bee1b9331d992569fa")
- add_versions("3.15.5", "cdd7d3925240af541a95a4361ab100b703bee3a9df0d7e9e05c069cf2c76a039")
- add_versions("3.15.8", "093e0dca5277b377c36a48a3633325dca3d92d68ac17d5700a1f7e1c3eca2793")
- add_versions("3.17.3", "fe65f4bfbd6cbb8c23de052f218cbe4ebfeb72c630847e0cca63eb27616c952a")
- add_versions("3.19.4", "a11a262a395f999f9dca83e195cc15b6c23b6d5e74133f8e3250ad0950485da1")
- add_patches("3.17.3", path.join(os.scriptdir(), "patches", "3.17.3", "field_access_listener.patch"), "ac9bdf49611b01e563fe74b2aaf1398214129454c3e18f1198245549eb281e85")
- add_patches("3.19.4", path.join(os.scriptdir(), "patches", "3.19.4", "vs_runtime.patch"), "8e73e585d29f3b9dca3c279df0b11b3ee7651728c07f51381a69e5899b93c367")
- add_configs("zlib", {description = "Enable zlib", default = false, type = "boolean"})
- add_deps("cmake")
- if is_plat("windows") then
- add_links("libprotobuf", "libprotoc", "utf8_range", "utf8_validity")
- else
- add_links("protobuf", "protoc", "utf8_range", "utf8_validity")
- end
- if is_plat("linux") then
- add_syslinks("pthread")
- end
- on_load(function (package)
- package:addenv("PATH", "bin")
- if package:config("zlib") then
- package:add("deps", "zlib")
- end
- if package:version():ge("22.0") then
- package:add("deps", "abseil")
- end
- end)
- on_install("windows", "linux", "macosx", function (package)
- if package:version():le("3.19.4") then
- os.cd("cmake")
- end
- io.replace("CMakeLists.txt", "set(protobuf_DEBUG_POSTFIX \"d\"", "set(protobuf_DEBUG_POSTFIX \"\"", {plain = true})
- if package:version():ge("26.1") then
- io.replace("cmake/abseil-cpp.cmake", "BUILD_SHARED_LIBS AND MSVC", "FALSE", {plain = true})
- end
- local configs = {"-Dprotobuf_BUILD_TESTS=OFF", "-Dprotobuf_BUILD_PROTOC_BINARIES=ON"}
- 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"))
-
- local packagedeps = {}
- if package:version():ge("22.0") then
- table.insert(packagedeps, "abseil")
- table.insert(configs, "-Dprotobuf_ABSL_PROVIDER=package")
- end
- if package:is_plat("windows") then
- table.insert(configs, "-DCMAKE_COMPILE_PDB_OUTPUT_DIRECTORY=''")
- table.insert(configs, "-Dprotobuf_MSVC_STATIC_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
- if package:config("shared") then
- package:add("defines", "PROTOBUF_USE_DLLS")
- end
- end
- if package:config("zlib") then
- table.insert(configs, "-Dprotobuf_WITH_ZLIB=ON")
- end
- import("package.tools.cmake").install(package, configs, {buildir = "build", packagedeps = packagedeps})
- os.trycp("build/Release/protoc.exe", package:installdir("bin"))
- end)
- on_test(function (package)
- if package:is_cross() then
- return
- end
- io.writefile("test.proto", [[
- syntax = "proto3";
- package test;
- message TestCase {
- string name = 4;
- }
- message Test {
- repeated TestCase case = 1;
- }
- ]])
- os.vrun("protoc test.proto --cpp_out=.")
- end)
|