File: mpack-1.0.10-0.rockspec

package info (click to toggle)
libmpack-lua 1.0.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 164 kB
  • sloc: ansic: 919; makefile: 118
file content (23 lines) | stat: -rw-r--r-- 449 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
local git_tag = '1.0.10'

package = 'mpack'
version = git_tag .. '-0'
source = {
  url = 'https://github.com/libmpack/libmpack-lua/releases/download/' ..
    git_tag .. '/libmpack-lua-' .. git_tag .. '.tar.gz'
}

description = {
  summary = 'Lua binding to libmpack',
  license = 'MIT',
  homepage = 'https://github.com/libmpack/libmpack-lua'
}

build = {
  type = 'builtin',
  modules = {
    ['mpack'] = {
      sources = {'lmpack.c'}
    }
  }
}