buildrootschalter/package/luasql/Config.in
Francois Perrad 4a09e9b54f luainterpreter: create virtual package
This patch introduces the luainterpreter virtual package, which
is provided either by 'lua' or by 'lua-jit'.

Packages that require a Lua interpreter can then depend on
BR2_PACKAGE_LUAINTERPRETER (in their Config.in) and luainterpreter
(in their .mk).

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
[yann.morin.1998@free.fr: switch to package-defined providers,
                          apply Thomas' comments]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-01-13 23:15:33 +01:00

23 lines
444 B
Plaintext

config BR2_PACKAGE_LUASQL
bool "luasql"
depends on BR2_PACKAGE_HAS_LUA_INTERPRETER
help
LuaSQL is a simple interface from Lua to a DBMS.
http://www.keplerproject.org/luasql
if BR2_PACKAGE_LUASQL
choice
prompt "LuaSQL Driver"
help
Select backend driver for LuaSQL.
config BR2_PACKAGE_LUASQL_DRIVER_SQLITE3
bool "SQLite3"
select BR2_PACKAGE_SQLITE
help
Select if you wish to use the SQLite3 LuaSQL driver.
endchoice
endif