summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Perrad <fperrad@gmail.com>2017-09-24 18:18:55 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-10-03 22:03:18 +0200
commitfbb48301ad2cd3ad19005f618907af211beeb348 (patch)
tree3eb7a18b37eceb015690df767213da6a31c3f606
parentf95bb8562ef02935d6fcf9b254060454e5be796c (diff)
downloadbuildroot-fbb48301ad2cd3ad19005f618907af211beeb348.tar.gz
buildroot-fbb48301ad2cd3ad19005f618907af211beeb348.zip
lua-fifo: new package
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/Config.in1
-rw-r--r--package/lua-fifo/Config.in6
-rw-r--r--package/lua-fifo/lua-fifo.hash2
-rw-r--r--package/lua-fifo/lua-fifo.mk14
4 files changed, 23 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index 23818788e3..c2c0901a49 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -583,6 +583,7 @@ menu "Lua libraries/modules"
source "package/lua-curl/Config.in"
source "package/lua-datafile/Config.in"
source "package/lua-ev/Config.in"
+ source "package/lua-fifo/Config.in"
source "package/lua-flu/Config.in"
source "package/lua-iconv/Config.in"
source "package/lua-markdown/Config.in"
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))
OpenPOWER on IntegriCloud