Skip to content

Commit

Permalink
New version: 2.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasguisasola committed Sep 9, 2020
1 parent d2fb0be commit 22d4a91
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions rockspec/luasql-oci8-2.6.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
package = "LuaSQL-OCI8"
version = "2.6.0-1"
source = {
url = "git://github.com/keplerproject/luasql.git",
branch = "2.6.0",
}
description = {
summary = "Database connectivity for Lua (Oracle driver)",
detailed = [[
LuaSQL is a simple interface from Lua to a DBMS. It enables a
Lua program to connect to databases, execute arbitrary SQL statements
and retrieve results in a row-by-row cursor fashion.
]],
license = "MIT/X11",
homepage = "http://www.keplerproject.org/luasql/"
}
dependencies = {
"lua >= 5.1"
}
external_dependencies = {
OCI8 = {
header = "oci.h"
}
}
build = {
type = "builtin",
modules = {
["luasql.oci8"] = {
sources = { "src/luasql.c", "src/ls_oci8.c" },
libraries = { "z", "clntsh", },
incdirs = { "$(OCI8_INCDIR)" },
libdirs = { "$(OCI8_LIBDIR)" }
}
}
}

0 comments on commit 22d4a91

Please sign in to comment.