-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathluasnmp-1.1.0-1.rockspec
More file actions
38 lines (38 loc) · 875 Bytes
/
luasnmp-1.1.0-1.rockspec
File metadata and controls
38 lines (38 loc) · 875 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
38
package="LuaSNMP"
version="1.1.0-1"
-- LuaDist source
source = {
tag = "1.1.0-1",
url = "git://github.com/hleuwer/luasnmp.git"
}
description = {
summary = "A binding to the net-snmp library",
detailed = [[
LuaSNMP is a binding to the net-snmp library.
It allows to implement SNMP manager functionality using
the Lua programming language.
]],
homepage = "http://github.com/hleuwer/luasnmp",
license = "MIT"
}
supported_platforms = {
"linux", "macosx"
}
dependencies = {
"lua >= 5.2"
}
external_dependencies = {
NETSNMP = {
header = "net-snmp/net-snmp-config.h"
}
}
build = {
type = "make",
variables = {
INSTALL_ROOT = "$(PREFIX)",
INSTALL_SHARE = "$(LUADIR)",
INSTALL_LIB = "$(LIBDIR)",
LUAINC = "$(LUA_INCDIR) -I$(NETSNMP_INCDIR)",
LDFLAGS = "$(LIBFLAG) -L$(NETSNMP_LIBDIR)",
}
}