diff --git a/Cargo.toml b/Cargo.toml index d88ceb6..4ec4258 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lua-resty-ldap" -version = "0.2.1" +version = "0.2.2" edition = "2021" [lib] diff --git a/rockspec/lua-resty-ldap-0.2.2-0.rockspec b/rockspec/lua-resty-ldap-0.2.2-0.rockspec new file mode 100644 index 0000000..3a1ecad --- /dev/null +++ b/rockspec/lua-resty-ldap-0.2.2-0.rockspec @@ -0,0 +1,37 @@ +package = "lua-resty-ldap" +version = "0.2.2-0" +source = { + url = "git://github.com/api7/lua-resty-ldap", + tag = "v0.2.2", +} + +description = { + summary = "Nonblocking Lua ldap driver library for OpenResty.", + homepage = "https://github.com/iresty/lua-resty-ldap", + license = "Apache License 2.0", + maintainer = "Yuansheng Wang " +} + +dependencies = { + "lua_pack = 2.0.0-0", + "lpeg = 1.0.2-1", +} + +build = { + type = "make", + build_variables = { + CFLAGS="$(CFLAGS)", + LIBFLAG="$(LIBFLAG)", + LUA_LIBDIR="$(LUA_LIBDIR)", + LUA_BINDIR="$(LUA_BINDIR)", + LUA_INCDIR="$(LUA_INCDIR)", + LUA="$(LUA)", + }, + install_variables = { + INST_PREFIX="$(PREFIX)", + INST_BINDIR="$(BINDIR)", + INST_LIBDIR="$(LIBDIR)", + INST_LUADIR="$(LUADIR)", + INST_CONFDIR="$(CONFDIR)", + }, +}