xmake.lua 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package("inih")
  2. set_homepage("https://github.com/benhoyt/inih")
  3. set_description("Simple .INI file parser in C, good for embedded systems")
  4. add_urls("https://github.com/benhoyt/inih/archive/refs/tags/$(version).tar.gz", {version = function (version) return "r" .. version end})
  5. add_urls("https://github.com/benhoyt/inih.git")
  6. add_versions("58", "e79216260d5dffe809bda840be48ab0eec7737b2bb9f02d2275c1b46344ea7b7")
  7. add_configs("ini_parser", {description = "compile and (if selected) install INIReader", default = true, type = "boolean"})
  8. add_configs("multi_line_entries", {description = "support for multi-line entries in the style of Python's ConfigParser", default = true, type = "boolean"})
  9. add_configs("utf_8_bom", {description = "allow a UTF-8 BOM sequence (0xEF 0xBB 0xBF) at the start of INI files", default = true, type = "boolean"})
  10. add_configs("inline_comments", {description = "allow inline comments with the comment prefix character", default = true, type = "boolean"})
  11. add_configs("inline_comment_prefix", {description = "allow inline comments with the comment prefix character", default = ";", type = "string"})
  12. add_configs("start_of_line_comment_prefix", {description = "character(s) to start a comment at the beginning of a line", default = ";#", type = "string"})
  13. add_configs("allow_no_value", {description = "allow name with no value", default = false, type = "boolean"})
  14. add_configs("stop_on_first_error", {description = "stop parsing after an error", default = false, type = "boolean"})
  15. add_configs("report_line_numbers", {description = "report line number on ini_handler callback", default = false, type = "boolean"})
  16. add_configs("call_handler_on_new_section", {description = "call the handler each time a new section is encountered", default = false, type = "boolean"})
  17. add_configs("heap", {description = "allocate memory on the heap using malloc instead using a fixed-sized line buffer on the stack", default = false, type = "boolean"})
  18. add_configs("max_line_length", {description = "maximum line length in bytes", default = "200", type = "string"})
  19. add_configs("initial_malloc_size", {description = "initial malloc size in bytes (when using the heap)", default = "200", type = "string"})
  20. add_configs("allow_realloc", {description = "allow initial malloc size to grow to max line length (when using the heap)", default = false, type = "boolean"})
  21. on_install(function (package)
  22. os.cp(path.join(os.scriptdir(), "port", "xmake.lua"), "xmake.lua")
  23. local configs = {}
  24. for name, config_value in table.orderpairs(package:configs()) do
  25. if not package:extraconf("configs", name, "builtin") then
  26. configs[name] = config_value
  27. end
  28. end
  29. import("package.tools.xmake").install(package, configs)
  30. end)
  31. on_test(function (package)
  32. assert(package:check_cxxsnippets({test = [[
  33. #include "ini.h"
  34. typedef struct { } configuration;
  35. static int handler(void* user, const char* section, const char* name, const char* value) { return 1; }
  36. int test(int argc, char* argv[])
  37. {
  38. configuration config;
  39. if (ini_parse("test.ini", handler, &config) < 0) {
  40. return 1;
  41. }
  42. return 0;
  43. }
  44. ]]}, {configs = {languages = "cxx11"}}))
  45. if package:config("ini_parser") then
  46. assert(package:check_cxxsnippets({test = [[
  47. #include <iostream>
  48. #include "INIReader.h"
  49. int test()
  50. {
  51. INIReader reader("test.ini");
  52. return 0;
  53. }
  54. ]]}, {configs = {languages = "cxx11"}}))
  55. end
  56. end)