File: lua-cmsgpack-0.3-0.rockspec

package info (click to toggle)
lua-cmsgpack 0.4.0~git20230328.57b1f90-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: ansic: 726; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 541 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package = "lua-cmsgpack"
version = "0.3-0"
source = {
   url = "git://github.com/antirez/lua-cmsgpack.git",
   branch = "0.3.0"
}
description = {
   summary = "MessagePack C implementation and bindings for Lua 5.1",
   homepage = "http://github.com/antirez/lua-cmsgpack",
   license = "Two-clause BSD",
   maintainer = "Salvatore Sanfilippo <antirez@gmail.com>"
}
dependencies = {
   "lua >= 5.1"
}
build = {
   type = "builtin",
   modules = {
      cmsgpack = {
         sources = {
            "lua_cmsgpack.c",
         }
      }
   }
}