Skip to content

Commit

Permalink
added rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
hcsturix74 committed Oct 19, 2015
1 parent 9600663 commit 5a7ebee
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
35 changes: 35 additions & 0 deletions rockspec/luanosql-unqlite-1.0.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -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)" }
}
}
}
34 changes: 34 additions & 0 deletions rockspec/luanosql-unqlite-cvs-1.rockspec
Original file line number Diff line number Diff line change
@@ -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)" }
}
}
}

0 comments on commit 5a7ebee

Please sign in to comment.