diff options
| author | adam <adam@pkgsrc.org> | 2013-07-04 18:06:24 +0000 |
|---|---|---|
| committer | adam <adam@pkgsrc.org> | 2013-07-04 18:06:24 +0000 |
| commit | e2805017d36dd85a4af623b2441c125f6e9c7648 (patch) | |
| tree | 831b8ca6d68a27a411609eea569d3a5242e1dc4e /databases/lua-sqlite3/Makefile | |
| parent | 83a9dad1bf1e51bb5b487106b3d462ffacef61c2 (diff) | |
| download | pkgsrc-e2805017d36dd85a4af623b2441c125f6e9c7648.tar.gz | |
Lua-Sqlite3 is a binding of Sqlite3 for Lua.
Lua-Sqlite3 is unique in contrast to other database bindings that it consists
of two layers. The first layer translates the SQLite 3 implementation's C API
to Lua. The first layer is called the backend. The second layers are frontend
layers, written in Lua. These layers provide a nice and smart view of the
database
Currently, Lua-Sqlite3 implements two frontends:
* A specialiced frontend which provides all sqlite3 capabilities.
* A LuaSQL compatible frontend as used on the Kepler Project.
Diffstat (limited to 'databases/lua-sqlite3/Makefile')
| -rw-r--r-- | databases/lua-sqlite3/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/databases/lua-sqlite3/Makefile b/databases/lua-sqlite3/Makefile new file mode 100644 index 00000000000..46cdd84585d --- /dev/null +++ b/databases/lua-sqlite3/Makefile @@ -0,0 +1,17 @@ +# $NetBSD: Makefile,v 1.1 2013/07/04 18:06:24 adam Exp $ + +DISTNAME= lua-sqlite3-0.4.1 +CATEGORIES= databases +MASTER_SITES= http://www.mroth.net/lua-sqlite3/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.mroth.net/lua-sqlite3/ +COMMENT= SQLite3 binding for LUA +LICENSE= mit + +GNU_CONFIGURE= yes + +.include "../../databases/sqlite3/buildlink3.mk" +.include "../../lang/lua/module.mk" +.include "../../mk/bsd.pkg.mk" |
