123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package("davix")
- set_homepage("https://davix.web.cern.ch/")
- set_description("High-performance file management over WebDAV/HTTP")
- set_license("LGPL-2.1")
- add_urls("https://github.com/cern-fts/davix/releases/download/R_$(version).tar.gz", {version = function (version)
- return format("%s/davix-%s", version:gsub("%.", "_"), version)
- end})
- add_urls("https://github.com/cern-fts/davix.git")
- add_versions("0.8.5", "f9ce21bcc2ed248f7825059d17577876616258c35177d74fad8f854a818a87f9")
- add_deps("python 3.x", {kind = "binary"})
- add_deps("cmake", "openssl", "libcurl", "libxml2")
- add_deps("util-linux", {configs = {libuuid = true}})
- add_includedirs("include/davix")
- if is_plat("linux") then
- add_syslinks("pthread")
- end
- on_install("macosx", "linux", function (package)
- local configs = {"-DDAVIX_TESTS=OFF", "-DEMBEDDED_LIBCURL=OFF", "-DLIB_SUFFIX="}
- table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
- table.insert(configs, "-DSHARED_LIBRARY=" .. (package:config("shared") and "ON" or "OFF"))
- table.insert(configs, "-DSTATIC_LIBRARY=" .. (package:config("shared") and "OFF" or "ON"))
- local utlinux = package:dep("util-linux"):fetch()
- if utlinux then
- for _, dir in ipairs(utlinux.includedirs or utlinux.sysincludedirs) do
- table.insert(configs, "-DUUID_INCLUDE_DIR=" .. dir)
- break
- end
- for _, dir in ipairs(utlinux.linkdirs) do
- table.insert(configs, "-DUUID_LIBRARY=" .. dir .. "/libuuid.a")
- break
- end
- end
- import("package.tools.cmake").install(package, configs, {packagedeps = "libcurl"})
- package:addenv("PATH", "bin")
- end)
- on_test(function (package)
- assert(package:check_cxxsnippets({test = [[
- #include <davix.hpp>
- void test() {
- Davix::Context context;
- context.loadModule("grid");
- }
- ]]}, {configs = {languages = "c++17"}}))
- end)
|