urn-scm-1.rockspec 643 B

12345678910111213141516171819202122232425262728293031323334
  1. package = "urn"
  2. version = "scm-1"
  3. source = {
  4. url = "git+https://gitlab.com/urn/urn.git"
  5. }
  6. description = {
  7. summary = "A Lisp dialect which compiles to Lua.",
  8. detailed = [[
  9. Urn is a minimalistic Lisp dialect which compiles to Lua, focusing
  10. on generating ideomatic, mostly-readable code. It has a comprehensive
  11. standard library, a powerful compiler and more.
  12. ]],
  13. homepage = "http://urn-lang.com",
  14. license = "BSD-3-Clause",
  15. }
  16. dependencies = {
  17. "lua >= 5.1, < 5.4",
  18. }
  19. build = {
  20. type = "builtin",
  21. modules = {},
  22. install = {
  23. bin = {
  24. urn = "bin/urn.lua",
  25. },
  26. },
  27. copy_directories = {
  28. "docs",
  29. "plugins",
  30. "tests",
  31. "urn-lib",
  32. },
  33. }