xmake.lua 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package("libsodium")
  2. set_homepage("https://libsodium.org")
  3. set_description("Sodium is a new, easy-to-use software library for encryption, decryption, signatures, password hashing and more.")
  4. if is_plat("windows") then
  5. set_urls("https://download.libsodium.org/libsodium/releases/libsodium-$(version)-msvc.zip",
  6. "https://github.com/jedisct1/libsodium/releases/download/$(version)-RELEASE/libsodium-$(version)-msvc.zip")
  7. add_versions("1.0.18", "c1d48d85c9361e350931ffe5067559cd7405a697c655d26955fb568d1084a5f4")
  8. add_versions("1.0.19", "3a137c98f96e809cb8927ed7a658fd0173d842c2b36c2a1e1954495571517b22")
  9. elseif is_plat("linux", "macosx") then
  10. add_deps("autoconf", "automake", "libtool", "pkg-config")
  11. set_urls("https://download.libsodium.org/libsodium/releases/libsodium-$(version).tar.gz",
  12. "https://github.com/jedisct1/libsodium/releases/download/$(version)-RELEASE/libsodium-$(version).tar.gz")
  13. add_versions("1.0.18", "6f504490b342a4f8a4c4a02fc9b866cbef8622d5df4e5452b46be121e46636c1")
  14. add_versions("1.0.19", "018d79fe0a045cca07331d37bd0cb57b2e838c51bc48fd837a1472e50068bbea")
  15. elseif is_plat("mingw") then
  16. set_urls("https://download.libsodium.org/libsodium/releases/libsodium-$(version)-mingw.tar.gz",
  17. "https://github.com/jedisct1/libsodium/releases/download/$(version)-RELEASE/libsodium-$(version)-mingw.tar.gz")
  18. add_versions("1.0.18", "e499c65b1c511cbc6700e436deb3771c3baa737981114c9e9f85f2ec90176861")
  19. add_versions("1.0.19", "fdd43a21a5ffd2933e6dd5563ecade2788ae94a054fde4188ce70755a68f43dd")
  20. end
  21. on_load(function (package)
  22. if not package:config("shared") then
  23. package:add("defines", "SODIUM_STATIC")
  24. end
  25. end)
  26. on_install("windows", function (package)
  27. os.cp("include", package:installdir())
  28. os.cp(path.join((package:is_arch("x64") and "x64" or "Win32"), (package:debug() and "Debug" or "Release"), "v142", (package:config("shared") and "dynamic" or "static"), "*"), package:installdir("lib"))
  29. end)
  30. on_install("mingw", function (package)
  31. local root_dir = (package:is_arch("x86_64") and "libsodium-win64" or "libsodium-win32")
  32. os.cp(path.join(root_dir, "include"), package:installdir())
  33. if package:config("shared") then
  34. os.cp(path.join(root_dir, "lib", "libsodium.dll.a"), package:installdir("lib"))
  35. os.cp(path.join(root_dir, "bin", "*"), package:installdir("lib"))
  36. else
  37. os.cp(path.join(root_dir, "lib", "libsodium.a"), package:installdir("lib"))
  38. end
  39. end)
  40. on_install("linux", "macosx", function (package)
  41. import("package.tools.autoconf").install(package)
  42. end)
  43. on_test(function (package)
  44. assert(package:check_cxxsnippets({test = [[
  45. int test(int args, char** argv) {
  46. if (sodium_init() < 0) {
  47. return -1;
  48. }
  49. return 0;
  50. }
  51. ]]}, {includes = "sodium.h"}))
  52. end)