Skip to content

Commit 15aec59

Browse files
committed
Release rockspec version 1.0.1
1 parent 6065da2 commit 15aec59

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

rockspecs/http-1.0.1-1.rockspec

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package = 'http'
2+
version = '1.0.1-1'
3+
source = {
4+
url = 'git://github.com/tarantool/http.git',
5+
tag = '1.0.1-1',
6+
}
7+
description = {
8+
summary = "HTTP server for Tarantool",
9+
homepage = 'https://github.com/tarantool/http/',
10+
license = 'BSD',
11+
}
12+
dependencies = {
13+
'lua >= 5.1'
14+
}
15+
external_dependencies = {
16+
TARANTOOL = {
17+
header = "tarantool/module.h"
18+
}
19+
}
20+
build = {
21+
type = 'builtin',
22+
23+
modules = {
24+
['http.lib'] = {
25+
sources = 'http/lib.c',
26+
incdirs = {
27+
"$(TARANTOOL_INCDIR)"
28+
}
29+
},
30+
['http.server'] = 'http/server.lua',
31+
['http.mime_types'] = 'http/mime_types.lua',
32+
['http.codes'] = 'http/codes.lua',
33+
}
34+
}
35+
36+
-- vim: syntax=lua
File renamed without changes.

0 commit comments

Comments
 (0)