delaunay-0.1-1.rockspec 525 B

123456789101112131415161718192021222324
  1. package = "delaunay"
  2. version = "0.1-1"
  3. source =
  4. {
  5. url = "https://github.com/Yonaba/delaunay/archive/delaunay-0.1-1.tar.gz",
  6. dir = "delaunay-delaunay-0.1-1"
  7. }
  8. description =
  9. {
  10. summary = "Lua module for Delaunay triangulation of convex polygons",
  11. homepage = "http://yonaba.github.io/delaunay",
  12. license = "MIT",
  13. maintainer = "Roland Yonaba <roland.yonaba@gmail.com>"
  14. }
  15. dependencies = { "lua >= 5.1" }
  16. build =
  17. {
  18. type = "builtin",
  19. modules =
  20. {
  21. delaunay = "delaunay.lua"
  22. },
  23. copy_directories = {"docs"}
  24. }