pocket_archive-scm-1.rockspec 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package = "pocket_archive"
  2. version = "scm-1"
  3. source = {
  4. url = "git://git.knowledgetx.com/scossu/pocket_archive.git",
  5. branch = "master",
  6. tag = "HEAD",
  7. }
  8. description = {
  9. summary = "Archival management & portal generator for cultural heritage.",
  10. detailed = [[
  11. Stick it in your pocket and carry it around. Install it on a cloud server.
  12. Install it on a Raspberry Pi. Browse it offline. Browse it online.
  13. Duplicate it, share it, harvest it and aggregate it. Feed it non-GMO
  14. spreadsheets regularly and it will thrive.
  15. ]],
  16. homepage = "http://git.knowledgetx.com/scossu/pocket_archive",
  17. license =
  18. "https://git.knowledgetx.com/scossu/pocket_archive/src/master/LICENSE"
  19. }
  20. dependencies = {
  21. "lua >= 5.4",
  22. "csv",
  23. "datafile",
  24. "etlua",
  25. "lua-vips",
  26. "penlight",
  27. "sllog",
  28. "volksdata",
  29. }
  30. build = {
  31. type = "builtin",
  32. modules = {
  33. ["pocket_archive"] = "src/core.lua",
  34. ["pocket_archive.model"] = "src/model.lua",
  35. ["pocket_archive.submission"] = "src/submission.lua",
  36. ["pocket_archive.html_generator"] = "src/html_generator.lua",
  37. ["pocket_archive.transformers"] = "src/transformers.lua",
  38. ["pocket_archive.monocypher"] = {
  39. "ext/monocypher/monocypher.c",
  40. "ext/monocypher/lua_monocypher.c",
  41. },
  42. },
  43. copy_directories = {"config", "doc", "templates"},
  44. }