f608c7705f
Luasql is a uniform frontend for multiple DB backends. [Thomas P: update version to 2.3.0 available from Github, as suggested by François Perrad. Fix .mk header. Use a LUASQL_MAKE_FLAGS variable, which is more commonly used.] Signed-off-by: Assaf Inbal <shmuelzon@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
400 B
Plaintext
22 lines
400 B
Plaintext
config BR2_PACKAGE_LUASQL
|
|
bool "luasql"
|
|
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
|