forked from Neopallium/lualogging
-
Notifications
You must be signed in to change notification settings - Fork 1
/
lualogging-1.2.0-1.rockspec
38 lines (37 loc) · 1008 Bytes
/
lualogging-1.2.0-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
#!/usr/bin/env lua
package = "lualogging"
version = "1.2.0-1"
source = {
url = "git://github.com/Neopallium/lualogging.git",
branch = "v1.2.0",
}
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/Neopallium/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",
},
}