Skip to content

Commit 22d4a91

Browse files
New version: 2.6.
1 parent d2fb0be commit 22d4a91

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
package = "LuaSQL-OCI8"
2+
version = "2.6.0-1"
3+
source = {
4+
url = "git://github.com/keplerproject/luasql.git",
5+
branch = "2.6.0",
6+
}
7+
description = {
8+
summary = "Database connectivity for Lua (Oracle driver)",
9+
detailed = [[
10+
LuaSQL is a simple interface from Lua to a DBMS. It enables a
11+
Lua program to connect to databases, execute arbitrary SQL statements
12+
and retrieve results in a row-by-row cursor fashion.
13+
]],
14+
license = "MIT/X11",
15+
homepage = "http://www.keplerproject.org/luasql/"
16+
}
17+
dependencies = {
18+
"lua >= 5.1"
19+
}
20+
external_dependencies = {
21+
OCI8 = {
22+
header = "oci.h"
23+
}
24+
}
25+
build = {
26+
type = "builtin",
27+
modules = {
28+
["luasql.oci8"] = {
29+
sources = { "src/luasql.c", "src/ls_oci8.c" },
30+
libraries = { "z", "clntsh", },
31+
incdirs = { "$(OCI8_INCDIR)" },
32+
libdirs = { "$(OCI8_LIBDIR)" }
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)