diff --git a/rockspec/lua-resty-ldap-0.3.1-0.rockspec b/rockspec/lua-resty-ldap-0.3.1-0.rockspec new file mode 100644 index 0000000..de91a8b --- /dev/null +++ b/rockspec/lua-resty-ldap-0.3.1-0.rockspec @@ -0,0 +1,29 @@ +package = "lua-resty-ldap" +version = "0.3.1-0" +source = { + url = "git+https://github.com/api7/lua-resty-ldap", + tag = "v0.3.1", +} + +description = { + summary = "Nonblocking Lua ldap driver library for OpenResty", + homepage = "https://github.com/api7/lua-resty-ldap", + license = "Apache License 2.0", + maintainer = "Yuansheng Wang " +} + +dependencies = { + "lua_pack >= 2.0.0", + "lpeg >= 1.0.2", +} + +build = { + type = "builtin", + modules = { + ["resty.ldap"] = "lib/resty/ldap.lua", + ["resty.ldap.asn1"] = "lib/resty/ldap/asn1.lua", + ["resty.ldap.filter"] = "lib/resty/ldap/filter.lua", + ["resty.ldap.protocol"] = "lib/resty/ldap/protocol.lua", + ["resty.ldap.client"] = "lib/resty/ldap/client.lua", + } +}