-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlua-mongo-git-1.rockspec
49 lines (49 loc) · 1.1 KB
/
lua-mongo-git-1.rockspec
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
package = 'lua-mongo'
version = 'git-1'
source = {
url = 'git://github.com/neoxic/lua-mongo.git',
}
description = {
summary = 'MongoDB Driver for Lua',
detailed = 'lua-mongo is a binding to the MongoDB C Driver (http://mongoc.org) for Lua.',
license = 'MIT',
homepage = 'https://github.com/neoxic/lua-mongo',
maintainer = 'Arseny Vakhrushev <arseny.vakhrushev@gmail.com>',
}
dependencies = {
'lua >= 5.1',
}
external_dependencies = {
LIBMONGOC = {
header = 'libmongoc-1.0/mongoc.h'
},
LIBBSON = {
header = 'libbson-1.0/bson.h'
},
}
build = {
type = 'builtin',
modules = {
mongo = {
sources = {
'src/bson.c',
'src/bsontype.c',
'src/bulkoperation.c',
'src/client.c',
'src/collection.c',
'src/cursor.c',
'src/database.c',
'src/flags.c',
'src/gridfs.c',
'src/gridfsfile.c',
'src/gridfsfilelist.c',
'src/main.c',
'src/objectid.c',
'src/util.c',
},
libraries = { 'mongoc-1.0', 'bson-1.0' },
incdirs = { '$(LIBMONGOC_INCDIR)/libmongoc-1.0', '$(LIBBSON_INCDIR)/libbson-1.0' },
libdirs = { '$(LIBMONGOC_LIBDIR)', '$(LIBBSON_LIBDIR)' },
},
},
}