pocket_archive-scm-1.rockspec 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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-cjson",
  26. "lua-vips",
  27. "penlight",
  28. "sllog",
  29. "volksdata",
  30. }
  31. build = {
  32. type = "builtin",
  33. modules = {
  34. ["pocket_archive"] = "src/core.lua",
  35. ["pocket_archive.model"] = "src/model.lua",
  36. ["pocket_archive.validator"] = "src/validator.lua",
  37. ["pocket_archive.submission"] = "src/submission.lua",
  38. ["pocket_archive.html_generator"] = "src/html_generator.lua",
  39. ["pocket_archive.transformers"] = "src/transformers.lua",
  40. ["pocket_archive.monocypher"] = {
  41. "ext/monocypher/monocypher.c",
  42. "ext/monocypher/lua_monocypher.c",
  43. },
  44. },
  45. copy_directories = {"config", "doc", "templates"},
  46. }