From 22d4a911f35cf851af9db71124e3998d96fb3fa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Guisasola?= Date: Wed, 9 Sep 2020 12:28:53 -0300 Subject: [PATCH] New version: 2.6. --- rockspec/luasql-oci8-2.6.0-1.rockspec | 35 +++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 rockspec/luasql-oci8-2.6.0-1.rockspec diff --git a/rockspec/luasql-oci8-2.6.0-1.rockspec b/rockspec/luasql-oci8-2.6.0-1.rockspec new file mode 100644 index 0000000..b6f38ad --- /dev/null +++ b/rockspec/luasql-oci8-2.6.0-1.rockspec @@ -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)" } + } + } +}