123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package = "pocket_archive"
- version = "scm-1"
- source = {
- url = "git://git.knowledgetx.com/scossu/pocket_archive.git",
- branch = "master",
- tag = "HEAD",
- }
- description = {
- summary = "Archival management & portal generator for cultural heritage.",
- detailed = [[
- Stick it in your pocket and carry it around. Install it on a cloud server.
- Install it on a Raspberry Pi. Browse it offline. Browse it online.
- Duplicate it, share it, harvest it and aggregate it. Feed it non-GMO
- spreadsheets regularly and it will thrive.
- ]],
- homepage = "http://git.knowledgetx.com/scossu/pocket_archive",
- license =
- "https://git.knowledgetx.com/scossu/pocket_archive/src/master/LICENSE"
- }
- dependencies = {
- "lua >= 5.4",
- "csv",
- "datafile",
- "etlua",
- "lua-vips",
- "penlight",
- "sllog",
- "volksdata",
- }
- build = {
- type = "builtin",
- modules = {
- ["pocket_archive"] = "src/core.lua",
- ["pocket_archive.model"] = "src/model.lua",
- ["pocket_archive.submission"] = "src/submission.lua",
- ["pocket_archive.html_generator"] = "src/html_generator.lua",
- ["pocket_archive.transformers"] = "src/transformers.lua",
- ["pocket_archive.monocypher"] = {
- "ext/monocypher/monocypher.c",
- "ext/monocypher/lua_monocypher.c",
- },
- },
- copy_directories = {"config", "doc", "templates"},
- }
|