package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
2.1 KiB
49 lines
2.1 KiB
1 year ago
|
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)
|