Initial Commit
[ancientarts.git] / api / .rocks / share / tarantool / rocks / http / scm-1 / http-scm-1.rockspec
1 package = 'http'
2 version = 'scm-1'
3 source = {
4 url = 'git://github.com/tarantool/http.git',
5 }
6 description = {
7 summary = "HTTP server for Tarantool",
8 homepage = 'https://github.com/tarantool/http/',
9 license = 'BSD',
10 }
11 dependencies = {
12 'lua >= 5.1'
13 }
14 external_dependencies = {
15 TARANTOOL = {
16 header = "tarantool/module.h"
17 }
18 }
19 build = {
20 type = 'builtin',
21
22 modules = {
23 ['http.lib'] = {
24 sources = 'http/lib.c',
25 incdirs = {
26 "$(TARANTOOL_INCDIR)"
27 }
28 },
29 ['http.server'] = 'http/server.lua',
30 ['http.mime_types'] = 'http/mime_types.lua',
31 ['http.codes'] = 'http/codes.lua',
32 }
33 }
34
35 -- vim: syntax=lua