Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. package = "LuaBitOp"
  2. version = "1.0.2-3"
  3.  
  4. source = {
  5. url = "git://github.com/LuaDist/luabitop.git",
  6. branch = "1.0.2"
  7. }
  8.  
  9. description = {
  10. summary = "Lua Bit Operations Module",
  11. detailed = [[
  12. Lua BitOp is a C extension module for Lua 5.1 which adds bitwise operations on numbers.
  13. Lua BitOp is Copyright © 2008 Mike Pall. Lua BitOp is free software, released under the MIT/X license (same license as the Lua core).
  14. ]],
  15. homepage = "http://bitop.luajit.org/",
  16. license = "MIT/X license"
  17. }
  18. dependencies = {
  19. "lua >= 5.1, < 5.3"
  20. }
  21. build = {
  22. type = "builtin",
  23. modules = {
  24. bit = {
  25. sources = {
  26. "bit.c"
  27. }
  28. }
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement