forked from Neopallium/lualogging
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlualogging-scm-0.rockspec
More file actions
37 lines (36 loc) · 980 Bytes
/
lualogging-scm-0.rockspec
File metadata and controls
37 lines (36 loc) · 980 Bytes
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
#!/usr/bin/env lua
package = "lualogging"
version = "scm-0"
source = {
url = "git://github.com/fchiron/lualogging.git",
}
description = {
summary = "A simple API to use logging features",
detailed = [[
LuaLogging provides a simple API to use logging features in Lua. Its design was
based on log4j. LuaLogging currently supports, through the use of appenders,
console, file, rolling file, email, socket and SQL outputs.
]],
homepage = "https://github.com/fchiron/lualogging",
license = "MIT/X11",
}
dependencies = {
"luasocket"
}
build = {
type = "none",
install = {
lua = {
['logging'] = "src/logging.lua",
['logging.console'] = "src/logging/console.lua",
['logging.file'] = "src/logging/file.lua",
['logging.rolling_file'] = "src/logging/rolling_file.lua",
['logging.email'] = "src/logging/email.lua",
['logging.sql'] = "src/logging/sql.lua",
['logging.socket'] = "src/logging/socket.lua",
}
},
copy_directories = {
"doc/html",
},
}