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
|
package="lualdap"
version="1.2.3-1"
source = {
url = "git://github.com/bdellegrazie/lualdap",
tag = "v1.2.3",
}
description = {
summary = "Simple interface from Lua to an LDAP Client",
detailed = [[
Simple interface from Lua to an LDAP client.
]],
homepage = "https://github.com/bdellegrazie/lualdap",
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.3"
}
external_dependencies = {
LIBLDAP = {
header = "ldap.h",
library = "ldap",
}
}
build = {
type = "builtin",
modules = {
lualdap = {
sources = {"src/lualdap.c"},
libdirs = {"$(LIBLDAP_LIBDIR)"},
incdirs = {"$(LIBLDAP_INCDIR)"},
libraries = {"ldap"},
},
}
}
|