Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sundown-scm-1.rockspec « rocks - github.com/torch/sundown-ffi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57bc14e3e347d42a894391746e12a8314e20a3e7 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package = "sundown"
version = "scm-1"

source = {
   url = "git://github.com/andresy/sundown-ffi.git"
}

description = {
   summary = "A FFI interface to the Markdown implementation of the Sundown library",
   detailed = [[
   ]],
   homepage = "https://github.com/andresy/sundown-ffi",
   license = "BSD"
}

dependencies = {
   "lua >= 5.1",
}

build = {
   type = "builtin",
   modules = {
      ["sundown.init"] = "init.lua",
      ["sundown.sdcdefs"] = "sdcdefs.lua",
      ["sundown.htmlcdefs"] = "htmlcdefs.lua",
      libsundown = {
         sources = {
            "src/autolink.c",
            "src/buffer.c",
            "src/markdown.c",
            "src/stack.c",
            "html/houdini_href_e.c",
            "html/houdini_html_e.c",
            "html/html.c",
            "html/html_smartypants.c"
         },
         incdirs = {
            "src/",
            "html/"
         }
      }
   }
}