mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
39 lines
1008 B
Lua
39 lines
1008 B
Lua
#!/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",
|
|
},
|
|
}
|