New version 2.3.4.

master
Tomás Guisasola 2016-10-30 18:36:03 -02:00
parent 63a4e12279
commit c04a0d95c8
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
package = "LuaSQL-Postgres"
version = "2.3.4-1"
source = {
url = "git://github.com/keplerproject/luasql.git",
branch = "v2.3.4",
}
description = {
summary = "Database connectivity for Lua (Postgres 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.0"
}
external_dependencies = {
PGSQL = {
header = "pg_config.h"
}
}
build = {
type = "builtin",
modules = {
["luasql.postgres"] = {
sources = { "src/luasql.c", "src/ls_postgres.c" },
libraries = { "pq" },
incdirs = { "$(PGSQL_INCDIR)" },
libdirs = { "$(PGSQL_LIBDIR)" }
}
}
}