Skip to content

Commit

Permalink
Rockspec for new version.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasguisasola committed May 14, 2016
1 parent 1e98488 commit 3095705
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions rockspec/luasql-postgres-2.3.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
package = "LuaSQL-Postgres"
version = "2.3.2-1"
source = {
url = "git://github.com/keplerproject/luasql.git",
branch = "v2.3.2",
}
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)" }
}
}
}

0 comments on commit 3095705

Please sign in to comment.