diff options
Diffstat (limited to 'package/lua-fifo')
-rw-r--r-- | package/lua-fifo/Config.in | 6 | ||||
-rw-r--r-- | package/lua-fifo/lua-fifo.hash | 2 | ||||
-rw-r--r-- | package/lua-fifo/lua-fifo.mk | 14 |
3 files changed, 22 insertions, 0 deletions
diff --git a/package/lua-fifo/Config.in b/package/lua-fifo/Config.in new file mode 100644 index 0000000000..5715b6bd27 --- /dev/null +++ b/package/lua-fifo/Config.in @@ -0,0 +1,6 @@ +config BR2_PACKAGE_LUA_FIFO + bool "lua-fifo" + help + A lua library/'class' that implements a FIFO. + + https://github.com/daurnimator/fifo.lua diff --git a/package/lua-fifo/lua-fifo.hash b/package/lua-fifo/lua-fifo.hash new file mode 100644 index 0000000000..bab372804e --- /dev/null +++ b/package/lua-fifo/lua-fifo.hash @@ -0,0 +1,2 @@ +# Locally calculated +sha256 53dea24ad658614a0254dcb10296a1a0fc5357315ada5724d6362f54c32b4c20 fifo-0.2-0.src.rock diff --git a/package/lua-fifo/lua-fifo.mk b/package/lua-fifo/lua-fifo.mk new file mode 100644 index 0000000000..875b89577a --- /dev/null +++ b/package/lua-fifo/lua-fifo.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# lua-fifo +# +################################################################################ + +LUA_FIFO_VERSION_UPSTREAM =0.2 +LUA_FIFO_VERSION =$(LUA_FIFO_VERSION_UPSTREAM)-0 +LUA_FIFO_NAME_UPSTREAM = fifo +LUA_FIFO_SUBDIR = fifo.lua-$(LUA_FIFO_VERSION_UPSTREAM) +LUA_FIFO_LICENSE = MIT +LUA_FIFO_LICENSE_FILES = $(LUA_FIFO_SUBDIR)/LICENSE + +$(eval $(luarocks-package)) |