lua-sort-1.0-2.rockspec 912 B

1234567891011121314151617181920212223242526
  1. rockspec_format = "3.0"
  2. package = "lua-sort"
  3. version = "1.0-2"
  4. source = {
  5. url = "git+https://notabug.org/alimiracle/lua-sort.git",
  6. tag = "1.0.2"
  7. }
  8. description = {
  9. summary = "a Lua module that provides implementations of various sorting algorithms.",
  10. detailed = "LuaSort is a versatile and comprehensive library that offers a wide range of sorting algorithms implemented in Lua, a powerful and lightweight programming language. With LuaSort, developers have access to a rich set of sorting techniques, allowing them to efficiently organize and manipulate data structures in their Lua projects.",
  11. homepage = "https://notabug.org/alimiracle/lua-sort",
  12. license = "gpl v3",
  13. maintainer = "alimiracle <alimiracle@riseup.net>",
  14. labels = { "sort" }
  15. }
  16. build = {
  17. type = "builtin",
  18. modules = {
  19. ["lua-sort"] = "lua-sort.lua"
  20. }
  21. }
  22. dependencies = {
  23. "lua >= 5.1"
  24. }