-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9600663
commit 5a7ebee
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)" } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)" } | ||
} | ||
} | ||
} |