package/lua-flu: new package

Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
[Thomas: "depends on" before "select" in Config.in]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017.08.x
Marcin Niestroj 2017-06-20 17:16:31 +02:00 committed by Thomas Petazzoni
parent 6da3737984
commit a435247b01
5 changed files with 36 additions and 0 deletions

View File

@ -1066,6 +1066,7 @@ F: board/grinn/
F: configs/grinn_*
F: package/argparse/
F: package/easydbus/
F: package/lua-flu/
F: package/luaossl/
F: package/rs485conf/
F: package/turbolua/

View File

@ -566,6 +566,7 @@ menu "Lua libraries/modules"
source "package/lua-coatpersistent/Config.in"
source "package/lua-csnappy/Config.in"
source "package/lua-ev/Config.in"
source "package/lua-flu/Config.in"
source "package/lua-iconv/Config.in"
source "package/lua-messagepack/Config.in"
source "package/lua-msgpack-native/Config.in"

View File

@ -0,0 +1,18 @@
config BR2_PACKAGE_LUA_FLU
bool "lua-flu"
depends on !BR2_STATIC_LIBS # libfuse
depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
depends on BR2_USE_MMU # libfuse
select BR2_PACKAGE_ATTR
select BR2_PACKAGE_LIBFUSE
help
Flu is a Lua binding for FUSE, which is a library allowing
creation of filesystem drivers run in userspace. Flu is a high
level binding, using basic Lua types rather than userdata
whenever possible.
http://piratery.net/flu/
comment "lua-flu needs a toolchain w/ threads, dynamic library"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS

View File

@ -0,0 +1,2 @@
# Locally calculated
sha256 1389c22daec77161ec93ff90c39ee70e0f8a656ff92f22f9cf5d7121999d5c53 flu-20150331-1.src.rock

View File

@ -0,0 +1,14 @@
################################################################################
#
# lua-flu
#
################################################################################
LUA_FLU_VERSION = 20150331-1
LUA_FLU_NAME_UPSTREAM = flu
LUA_FLU_SUBDIR = doub-flu-a7daae986339
LUA_FLU_LICENSE = MIT
LUA_FLU_LICENSE_FILES = $(LUA_FLU_SUBDIR)/doc/LICENSE.txt
LUA_FLU_DEPENDENCIES = attr libfuse
$(eval $(luarocks-package))