diff --git a/rockspec/luanosql-unqlite-1.0.0-1.rockspec b/rockspec/luanosql-unqlite-1.0.0-1.rockspec new file mode 100644 index 0000000..b5464f0 --- /dev/null +++ b/rockspec/luanosql-unqlite-1.0.0-1.rockspec @@ -0,0 +1,35 @@ +package = "LuaNoSQL-UnQLite" +version = "1.0.0-1" +source = { + url = "git://github.com/hcsturix74/luanosql.git", + branch = "v1.0.0", +} +description = { + summary = "NoSQL Database connectivity for Lua (UnQLite driver)", + detailed = [[ + LuaNoSQL is a simple no-ffi-based interface from Lua to NoSQL DBMS. It enables a + Lua program to connect to NoSQL databases (such as UnQLite or Vedis), execute + arbitrary key/value operations and manage data using cursors. + ]], + license = "MIT/X11", + homepage = "http://github.com/hcsturix74/LuaNoSQL" +} +dependencies = { + "lua >= 5.1" +} +external_dependencies = { + UNQLITE = { + header = "unqlite.h" + } +} +build = { + type = "builtin", + modules = { + ["luanosql.unqlite"] = { + sources = { "src/luanosql.c", "src/lns_unqlite.c" }, + libraries = { "unqlite" }, + incdirs = { "$(UNQLITE_INCDIR)" }, + libdirs = { "$(UNQLITE_LIBDIR)" } + } + } +} \ No newline at end of file diff --git a/rockspec/luanosql-unqlite-cvs-1.rockspec b/rockspec/luanosql-unqlite-cvs-1.rockspec new file mode 100644 index 0000000..8ed1a37 --- /dev/null +++ b/rockspec/luanosql-unqlite-cvs-1.rockspec @@ -0,0 +1,34 @@ +package = "LuaNoSQL-UnQLite" +version = "cvs-1" +source = { + url = "git://github.com/hcsturix74/luanosql.git" +} +description = { + summary = "NoSQL Database connectivity for Lua (UnQLite driver)", + detailed = [[ + LuaNoSQL is a simple no-ffi-based interface from Lua to NoSQL DBMS. It enables a + Lua program to connect to NoSQL databases (such as UnQLite or Vedis), execute + arbitrary key/value operations and manage data using cursors. + ]], + license = "MIT/X11", + homepage = "http://github.com/hcsturix74/LuaNoSQL" +} +dependencies = { + "lua >= 5.1" +} +external_dependencies = { + UNQLITE = { + header = "unqlite.h" + } +} +build = { + type = "builtin", + modules = { + ["luanosql.unqlite"] = { + sources = { "src/luanosql.c", "src/lns_unqlite.c" }, + libraries = { "unqlite" }, + incdirs = { "$(UNQLITE_INCDIR)" }, + libdirs = { "$(UNQLITE_LIBDIR)" } + } + } +} \ No newline at end of file