lsqlite3: new package

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Francois Perrad 2014-02-24 08:35:00 +01:00 committed by Thomas Petazzoni
parent 8bfb7c2df6
commit 1175750dce
3 changed files with 21 additions and 0 deletions

View File

@ -378,6 +378,7 @@ source "package/ljsyscall/Config.in"
source "package/lpeg/Config.in"
source "package/lpty/Config.in"
source "package/lrandom/Config.in"
source "package/lsqlite3/Config.in"
source "package/lua-cjson/Config.in"
source "package/lua-coat/Config.in"
source "package/lua-coatpersistent/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_LSQLITE3
bool "lsqlite3"
select BR2_PACKAGE_SQLITE
depends on BR2_PACKAGE_HAS_LUA_INTERPRETER
help
a thin Lua wrapper for the SQLite3 library.
http://lua.sqlite.org/

View File

@ -0,0 +1,12 @@
################################################################################
#
# lsqlite3
#
################################################################################
LSQLITE3_VERSION = 0.9.1-2
LSQLITE3_SUBDIR = lsqlite3_fsl09t
LSQLITE3_DEPENDENCIES = sqlite
LSQLITE3_LICENSE = MIT
$(eval $(luarocks-package))