aboutsummaryrefslogtreecommitdiff
path: root/lua-cjson-1.0.4-1.rockspec
blob: 5eac501b2bf8a020935a5139cebb895e05e0a499 (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
44
45
46
47
48
49
50
51
52
53
package = "lua-cjson"
version = "1.0.4-1"

source = {
    url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.4.zip",
}

description = {
    summary = "Fast JSON encoding/parsing support for Lua",
    detailed = [[
        Lua CJSON provides fast UTF-8 JSON parsing/encoding support for Lua,
        and has no external dependencies.
    ]],
    homepage = "http://www.kyne.com.au/~mark/software/lua-cjson.php",
    license = "MIT"
}

dependencies = {
    "lua >= 5.1"
}

build = {
    type = "builtin",
    modules = {
        cjson = {
            sources = { "lua_cjson.c", "strbuf.c" },
-- Optional workarounds:
-- USE_POSIX_USELOCALE: Linux, OSX. Thread safe. Recommended.
-- USE_POSIX_SETLOCALE: Works on all ANSI C platforms. May be used when
--                      thread-safety isn't required.
-- USE_INTERNAL_ISINF:  Provide internal isinf() implementation. Required
--                      on some Solaris platforms.
            defines = {
                "VERSION=\"1.0.4\"", "USE_POSIX_SETLOCALE",
-- LuaRocks does not support platform specific configuration for Solaris.
-- Uncomment the line below on Solaris platforms.
--                "USE_INTERNAL_ISINF"
            }
        }
    },
    -- Override default build options (per platform)
    platforms = {
        linux = { modules = { cjson = { defines = {
            [2] = "USE_POSIX_USELOCALE"
        } } } },
        macosx = { modules = { cjson = { defines = {
            [2] = "USE_POSIX_USELOCALE"
        } } } }
    },
    copy_directories = { "tests" }
}

-- vi:ai et sw=4 ts=4: