lsup-scm-1.rockspec 750 B

1234567891011121314151617181920212223242526272829
  1. package = "lsup"
  2. version = "scm-1"
  3. source = {
  4. url = "git://git.knowledgetx.com/scossu/lsup_lua.git",
  5. branch = "master",
  6. tag = "HEAD",
  7. }
  8. description = {
  9. summary = "Compact, minimalistic RDF library and persistent store.",
  10. detailed = [[
  11. `lsup_rdf` is an embedded library to manipulate and permanently store
  12. Linked Data. It handles terms, triples, graphs, and has in-memory and
  13. persistent storage back ends. It can encode and decode Turtle and N3
  14. syntax.
  15. ]],
  16. homepage = "http://git.knowledgetx.com/scossu/lsup_lua",
  17. license = "https://git.knowledgetx.com/scossu/lsup_lua/src/master/LICENSE"
  18. }
  19. dependencies = {
  20. "lua >= 5.4, < 6",
  21. }
  22. build = {
  23. type = "make",
  24. install_target = "local_install",
  25. }